From: Peter Penz Date: Wed, 10 Jan 2007 00:04:16 +0000 (+0000) Subject: Applied some patches found by EBN (thanks to Nicolas Lécureuil for the patches!). X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d8ab89171dacd45051060a622aade64e51743cad Applied some patches found by EBN (thanks to Nicolas Lécureuil for the patches!). svn path=/trunk/playground/utils/dolphin/; revision=621872 --- diff --git a/src/bookmarkssettingspage.h b/src/bookmarkssettingspage.h index a76b85d46..becf67654 100644 --- a/src/bookmarkssettingspage.h +++ b/src/bookmarkssettingspage.h @@ -38,7 +38,7 @@ class BookmarksSettingsPage : public SettingsPageBase Q_OBJECT public: - BookmarksSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); + explicit BookmarksSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); virtual ~BookmarksSettingsPage(); diff --git a/src/dolphindetailsview.h b/src/dolphindetailsview.h index 99127abc4..cb233b9fd 100644 --- a/src/dolphindetailsview.h +++ b/src/dolphindetailsview.h @@ -40,7 +40,7 @@ class DolphinDetailsView : public QListView Q_OBJECT public: - DolphinDetailsView(DolphinView* parent); + explicit DolphinDetailsView(DolphinView* parent); virtual ~DolphinDetailsView(); }; diff --git a/src/dolphindirlister.h b/src/dolphindirlister.h index 0f90fa63c..6ee4dc600 100644 --- a/src/dolphindirlister.h +++ b/src/dolphindirlister.h @@ -38,7 +38,7 @@ public: virtual ~DolphinDirLister(); signals: - /** Is emitted whenever an error occured. */ + /** Is emitted whenever an error has occured. */ void errorMessage(const QString& msg); protected: diff --git a/src/dolphiniconsview.h b/src/dolphiniconsview.h index e8ead3eb6..5c507ad67 100644 --- a/src/dolphiniconsview.h +++ b/src/dolphiniconsview.h @@ -38,7 +38,7 @@ class DolphinIconsView : public QListView Q_OBJECT public: - DolphinIconsView(DolphinView* parent); + explicit DolphinIconsView(DolphinView* parent); virtual ~DolphinIconsView(); protected: diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index e7f626062..ad144d625 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -437,7 +437,7 @@ void DolphinMainWindow::createFile() clearStatusBar(); // TODO: const Entry& entry = m_createFileTemplates[QString(sender->name())]; - // should be enough. Anyway: the implemantation of [] does a linear search internally too. + // should be enough. Anyway: the implementation of [] does a linear search internally too. KSortableList::ConstIterator it = m_createFileTemplates.begin(); KSortableList::ConstIterator end = m_createFileTemplates.end(); diff --git a/src/dolphinsettingsdialog.h b/src/dolphinsettingsdialog.h index e6d7ee2ad..168dc8cc1 100644 --- a/src/dolphinsettingsdialog.h +++ b/src/dolphinsettingsdialog.h @@ -39,7 +39,7 @@ class DolphinSettingsDialog : public KPageDialog { Q_OBJECT public: - DolphinSettingsDialog(DolphinMainWindow* mainWindow); + explicit DolphinSettingsDialog(DolphinMainWindow* mainWindow); virtual ~DolphinSettingsDialog(); protected slots: diff --git a/src/infosidebarpage.h b/src/infosidebarpage.h index 8efcb1192..ad1e71357 100644 --- a/src/infosidebarpage.h +++ b/src/infosidebarpage.h @@ -59,7 +59,7 @@ class InfoSidebarPage : public SidebarPage Q_OBJECT public: - InfoSidebarPage(DolphinMainWindow* mainWindow, QWidget* parent=0); + explicit InfoSidebarPage(DolphinMainWindow* mainWindow, QWidget* parent=0); virtual ~InfoSidebarPage(); protected: diff --git a/src/pixmapviewer.cpp b/src/pixmapviewer.cpp index bcbee2aaa..ae739cf43 100644 --- a/src/pixmapviewer.cpp +++ b/src/pixmapviewer.cpp @@ -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 * ***************************************************************************/ #include "pixmapviewer.h" diff --git a/src/pixmapviewer.h b/src/pixmapviewer.h index 5f9df88a9..fadcd2259 100644 --- a/src/pixmapviewer.h +++ b/src/pixmapviewer.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 PIXMAPVIEWER_H @@ -36,7 +36,7 @@ class PixmapViewer : public QWidget { Q_OBJECT public: - PixmapViewer(QWidget* parent); + explicit PixmapViewer(QWidget* parent); virtual ~PixmapViewer(); void setPixmap(const QPixmap& pixmap); const QPixmap& pixmap() const { return m_pixmap; } diff --git a/src/progressindicator.cpp b/src/progressindicator.cpp index b42bc2ea5..1126b823d 100644 --- a/src/progressindicator.cpp +++ b/src/progressindicator.cpp @@ -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 * ***************************************************************************/ #include "progressindicator.h" diff --git a/src/progressindicator.h b/src/progressindicator.h index 637ca10ec..542f776d3 100644 --- a/src/progressindicator.h +++ b/src/progressindicator.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 PROGRESSINDICATOR_H #define PROGRESSINDICATOR_H diff --git a/src/protocolcombo.cpp b/src/protocolcombo.cpp index d8ae46031..94f4e359c 100644 --- a/src/protocolcombo.cpp +++ b/src/protocolcombo.cpp @@ -14,7 +14,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 * ***************************************************************************/ #include diff --git a/src/protocolcombo.h b/src/protocolcombo.h index 5ddc113b9..616a286b1 100644 --- a/src/protocolcombo.h +++ b/src/protocolcombo.h @@ -14,7 +14,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 PROTOCOLCOMBO_H #define PROTOCOLCOMBO_H @@ -33,7 +33,7 @@ class ProtocolCombo : public UrlNavigatorButton Q_OBJECT public: - ProtocolCombo(const QString& protocol, UrlNavigator* parent = 0); + explicit ProtocolCombo(const QString& protocol, UrlNavigator* parent = 0); QString currentProtocol() const; diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp index 02238e5e7..ab43d4753 100644 --- a/src/renamedialog.cpp +++ b/src/renamedialog.cpp @@ -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 * ***************************************************************************/ #include "renamedialog.h" diff --git a/src/renamedialog.h b/src/renamedialog.h index 96156725d..093484f2b 100644 --- a/src/renamedialog.h +++ b/src/renamedialog.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 RENAMEDIALOG_H #define RENAMEDIALOG_H @@ -45,7 +45,7 @@ class RenameDialog : public KDialog Q_OBJECT public: - RenameDialog(const KUrl::List& items); + explicit RenameDialog(const KUrl::List& items); virtual ~RenameDialog(); /** diff --git a/src/settingspagebase.cpp b/src/settingspagebase.cpp index 40821c1d5..6f8dae7c5 100644 --- a/src/settingspagebase.cpp +++ b/src/settingspagebase.cpp @@ -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 * ***************************************************************************/ #include "settingspagebase.h" diff --git a/src/settingspagebase.h b/src/settingspagebase.h index 953be02b8..d3fa29ad9 100644 --- a/src/settingspagebase.h +++ b/src/settingspagebase.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 SETTINGSPAGEBASE_H @@ -33,7 +33,7 @@ class SettingsPageBase : public QWidget Q_OBJECT public: - SettingsPageBase(QWidget* parent); + explicit SettingsPageBase(QWidget* parent); virtual ~SettingsPageBase(); /** diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp index 5a57ad282..25b528f55 100644 --- a/src/sidebarpage.cpp +++ b/src/sidebarpage.cpp @@ -14,7 +14,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 * ***************************************************************************/ #include "sidebarpage.h" diff --git a/src/sidebarpage.h b/src/sidebarpage.h index d83ef5e9a..b1e758824 100644 --- a/src/sidebarpage.h +++ b/src/sidebarpage.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 _SIDEBARPAGE_H_ @@ -36,7 +36,7 @@ class SidebarPage : public QWidget Q_OBJECT public: - SidebarPage(DolphinMainWindow* mainwindow, QWidget* parent=0); + explicit SidebarPage(DolphinMainWindow* mainwindow, QWidget* parent=0); virtual ~SidebarPage(); protected slots: diff --git a/src/statusbarmessagelabel.cpp b/src/statusbarmessagelabel.cpp index 43ad1b77e..682aa123b 100644 --- a/src/statusbarmessagelabel.cpp +++ b/src/statusbarmessagelabel.cpp @@ -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 * ***************************************************************************/ #include "statusbarmessagelabel.h" diff --git a/src/statusbarmessagelabel.h b/src/statusbarmessagelabel.h index 456dab8ba..9aa8ac47d 100644 --- a/src/statusbarmessagelabel.h +++ b/src/statusbarmessagelabel.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 STATUSBARMESSAGELABEL_H @@ -45,7 +45,7 @@ class StatusBarMessageLabel : public QWidget Q_OBJECT public: - StatusBarMessageLabel(QWidget* parent); + explicit StatusBarMessageLabel(QWidget* parent); virtual ~StatusBarMessageLabel(); void setType(DolphinStatusBar::Type type); diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index d63b12eb7..ce8a2519b 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -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 * ***************************************************************************/ #include "statusbarspaceinfo.h" diff --git a/src/statusbarspaceinfo.h b/src/statusbarspaceinfo.h index 832571651..1a1b7b26a 100644 --- a/src/statusbarspaceinfo.h +++ b/src/statusbarspaceinfo.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 STATUSBARSPACEINFO_H #define STATUSBARSPACEINFO_H @@ -38,7 +38,7 @@ class StatusBarSpaceInfo : public QWidget Q_OBJECT public: - StatusBarSpaceInfo(QWidget* parent); + explicit StatusBarSpaceInfo(QWidget* parent); virtual ~StatusBarSpaceInfo(); void setUrl(const KUrl& url); diff --git a/src/undomanager.cpp b/src/undomanager.cpp index 30e0dba35..eb1ce0f37 100644 --- a/src/undomanager.cpp +++ b/src/undomanager.cpp @@ -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 * ***************************************************************************/ #include "undomanager.h" diff --git a/src/undomanager.h b/src/undomanager.h index baed41947..4f0b6682d 100644 --- a/src/undomanager.h +++ b/src/undomanager.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 UNDOMANAGER_H diff --git a/src/urlbutton.h b/src/urlbutton.h index a52fdf463..4c88a7d3a 100644 --- a/src/urlbutton.h +++ b/src/urlbutton.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 URLBUTTON_H @@ -41,7 +41,7 @@ class UrlButton : public QPushButton Q_OBJECT public: - UrlButton(UrlNavigator* parent); + explicit UrlButton(UrlNavigator* parent); virtual ~UrlButton(); UrlNavigator* urlNavigator() const; diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 1545a4907..b9621d5b6 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -16,7 +16,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 * ***************************************************************************/ #include "urlnavigator.h" diff --git a/src/urlnavigator.h b/src/urlnavigator.h index 1ae1dc040..5e7477a1c 100644 --- a/src/urlnavigator.h +++ b/src/urlnavigator.h @@ -1,6 +1,6 @@ -/*************************************************************************** -* Copyright (C) 2006 by Peter Penz * -* peter.penz@gmx.at * +/************************************************************************** +* Copyright (C) 2006 by Peter Penz * +* peter.penz@gmx.at * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -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 UrlNAVIGATOR_H diff --git a/src/urlnavigatorbutton.cpp b/src/urlnavigatorbutton.cpp index 70c25b20b..9fe2186da 100644 --- a/src/urlnavigatorbutton.cpp +++ b/src/urlnavigatorbutton.cpp @@ -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 * ***************************************************************************/ #include "urlnavigatorbutton.h" diff --git a/src/urlnavigatorbutton.h b/src/urlnavigatorbutton.h index b55bcb880..0ddaf66a3 100644 --- a/src/urlnavigatorbutton.h +++ b/src/urlnavigatorbutton.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 UrlNAVIGATORBUTTON_H #define UrlNAVIGATORBUTTON_H @@ -52,7 +52,7 @@ class UrlNavigatorButton : public UrlButton Q_OBJECT public: - UrlNavigatorButton(int index, UrlNavigator* parent = 0); + explicit UrlNavigatorButton(int index, UrlNavigator* parent = 0); virtual ~UrlNavigatorButton(); void setIndex(int index); int index() const { return m_index; } diff --git a/src/viewproperties.cpp b/src/viewproperties.cpp index 9316a6d5a..c0343350d 100644 --- a/src/viewproperties.cpp +++ b/src/viewproperties.cpp @@ -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 * ***************************************************************************/ #include diff --git a/src/viewproperties.h b/src/viewproperties.h index 1681b7890..7e48b923b 100644 --- a/src/viewproperties.h +++ b/src/viewproperties.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 VIEWPROPERTIES_H @@ -48,7 +48,7 @@ class QFile; class ViewProperties { public: - ViewProperties(const KUrl& url); + explicit ViewProperties(const KUrl& url); virtual ~ViewProperties(); void setViewMode(DolphinView::Mode mode); diff --git a/src/viewpropertiesdialog.cpp b/src/viewpropertiesdialog.cpp index a187ef89a..dea4020f2 100644 --- a/src/viewpropertiesdialog.cpp +++ b/src/viewpropertiesdialog.cpp @@ -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 * ***************************************************************************/ #include "viewpropertiesdialog.h" diff --git a/src/viewpropertiesdialog.h b/src/viewpropertiesdialog.h index 6cbae0fe7..bb8fac9ef 100644 --- a/src/viewpropertiesdialog.h +++ b/src/viewpropertiesdialog.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 VIEWPROPERTIESDIALOG_H #define VIEWPROPERTIESDIALOG_H @@ -40,7 +40,7 @@ class ViewPropertiesDialog : public KDialog Q_OBJECT public: - ViewPropertiesDialog(DolphinView* dolphinView); + explicit ViewPropertiesDialog(DolphinView* dolphinView); virtual ~ViewPropertiesDialog(); private slots: diff --git a/src/viewpropsprogressinfo.cpp b/src/viewpropsprogressinfo.cpp index 887dfa2c7..36aac51e9 100644 --- a/src/viewpropsprogressinfo.cpp +++ b/src/viewpropsprogressinfo.cpp @@ -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 * ***************************************************************************/ #include "viewpropsprogressinfo.h" diff --git a/src/viewpropsprogressinfo.h b/src/viewpropsprogressinfo.h index b355ef597..8dfb212b4 100644 --- a/src/viewpropsprogressinfo.h +++ b/src/viewpropsprogressinfo.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 VIEWPROPSPROGRESSINFO_H #define VIEWPROPSPROGRESSINFO_H diff --git a/src/viewsettingspage.cpp b/src/viewsettingspage.cpp index 859f479a8..5bdd1753e 100644 --- a/src/viewsettingspage.cpp +++ b/src/viewsettingspage.cpp @@ -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 * ***************************************************************************/ #include "viewsettingspage.h" diff --git a/src/viewsettingspage.h b/src/viewsettingspage.h index f2949bbc3..1b068cd19 100644 --- a/src/viewsettingspage.h +++ b/src/viewsettingspage.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 VIEWSETTINGSPAGE_H #define VIEWSETTINGSPAGE_H