X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/edb2c4ad62f874b37c7aba6c06479dfdaf647120..abf17941f7:/src/detailsviewsettingspage.h diff --git a/src/detailsviewsettingspage.h b/src/detailsviewsettingspage.h index 1eaba4242..95f611b85 100644 --- a/src/detailsviewsettingspage.h +++ b/src/detailsviewsettingspage.h @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ #ifndef DETAILSVIEWSETTINGSPAGE_H @@ -23,6 +23,7 @@ #include +class DolphinMainWindow; class QCheckBox; class QFontComboBox; class QSpinBox; @@ -32,15 +33,13 @@ class QRadioButton; /** * @brief Represents the page from the Dolphin Settings which allows * to modify the settings for the details view. - * - * @author Peter Penz */ class DetailsViewSettingsPage : public KVBox { Q_OBJECT public: - DetailsViewSettingsPage(QWidget* parent); + DetailsViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); virtual ~DetailsViewSettingsPage(); /** @@ -51,6 +50,7 @@ public: void applySettings(); private: + DolphinMainWindow* m_mainWindow; QCheckBox* m_dateBox; QCheckBox* m_permissionsBox; QCheckBox* m_ownerBox;