From 302e62bd7d92da84c7f3085b407916e6a7e8a1bb Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 11 Jun 2015 06:32:21 +0000 Subject: refactoring git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5125 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/fileops/settingsdialog.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/plugins/General/fileops/settingsdialog.h') 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; -- cgit v1.2.3-13-gbd6f