diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-11 06:32:21 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-11 06:32:21 +0000 |
| commit | 302e62bd7d92da84c7f3085b407916e6a7e8a1bb (patch) | |
| tree | 3b9a211770a82e1b69573a4e1e32be553ca076f1 /src/plugins/General/fileops/settingsdialog.h | |
| parent | f806e75993cdfd20a24c5e17023f6399116c0b63 (diff) | |
| download | qmmp-302e62bd7d92da84c7f3085b407916e6a7e8a1bb.tar.gz qmmp-302e62bd7d92da84c7f3085b407916e6a7e8a1bb.tar.bz2 qmmp-302e62bd7d92da84c7f3085b407916e6a7e8a1bb.zip | |
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5125 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/fileops/settingsdialog.h')
| -rw-r--r-- | src/plugins/General/fileops/settingsdialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/General/fileops/settingsdialog.h b/src/plugins/General/fileops/settingsdialog.h index c9c49544c..a9e1553fd 100644 --- a/src/plugins/General/fileops/settingsdialog.h +++ b/src/plugins/General/fileops/settingsdialog.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -53,33 +53,33 @@ private slots: private: void createMenus(); - Ui::SettingsDialog ui; + Ui::SettingsDialog m_ui; }; class ActionItem: public QTableWidgetItem { public: - ActionItem (const QString &text): QTableWidgetItem(text){}; + ActionItem (const QString &text): QTableWidgetItem(text){} QString pattern() { return m_pattern; - }; + } QString destination() { return m_destination; - }; + } void setPattern(const QString &pattern) { m_pattern = pattern; - }; + } void setDestination(const QString &dest) { m_destination = dest; - }; + } private: QString m_pattern, m_destination; |
