From 0846ee05f8bab304ed40f93d617d3a4ec90456ca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Thu, 28 Jan 2016 23:39:56 +0100 Subject: [PATCH] Move find dialog layout code into separate ui file --- src/edit/FindDialog.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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(); }; -- 2.30.2