Move find dialog layout code into separate ui file
[vlp.git] / src / edit / FindDialog.h
index b0c6d5e24a0df6c5f8b65f3c06cc6707ab59e104..50f91b63e8ee82bb8abf3c431c3eeaad0d8f5824 100644 (file)
@@ -13,7 +13,7 @@ namespace dialog {
 
 /**
  * Find Dialog class
- * Displays dialog for findinf text in source code
+ * Displays dialog for finding text in source code
  */
 class FindDialog : public QDialog, private Ui::FindDialog {
 public:
@@ -28,16 +28,16 @@ public:
        ~FindDialog();
 
        /**
-        * Gets user-passed program name
+        * Checks if search should be case sensitive
         * 
-        * @return program name entered in dialog
+        * @return true if search should be case sensitive, false otherwise
         */
        bool isCaseSensitive();
 
        /**
-        * Gets program code template
+        * Gets text to search for
         * 
-        * @return program code template with program name
+        * @return text to search for
         */
        QString getSearchText();
 };