From: Rafał Długołęcki Date: Thu, 28 Jan 2016 22:39:56 +0000 (+0100) Subject: Move find dialog layout code into separate ui file X-Git-Tag: 3.4-b1~22 X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=0846ee05f8bab304ed40f93d617d3a4ec90456ca;p=vlp.git Move find dialog layout code into separate ui file --- diff --git a/src/edit/FindDialog.h b/src/edit/FindDialog.h index b0c6d5e..50f91b6 100644 --- a/src/edit/FindDialog.h +++ b/src/edit/FindDialog.h @@ -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(); };