diff --git a/kdecore/sycoca/ksycocaentry.h b/kdecore/sycoca/ksycocaentry.h index c8bfc058..4fc2d6cc 100644 --- a/kdecore/sycoca/ksycocaentry.h +++ b/kdecore/sycoca/ksycocaentry.h @@ -145,7 +145,7 @@ public: // KSycocaEntry &operator=(const KSycocaEntry &right); protected: KSycocaEntry(KSycocaEntryPrivate &d); - KSycocaEntryPrivate *d_ptr; + KSycocaEntryPrivate *const d_ptr; private: Q_DISABLE_COPY(KSycocaEntry) diff --git a/kdecore/util/kdevicedatabase.h b/kdecore/util/kdevicedatabase.h index 46cb092a..d19e38d3 100644 --- a/kdecore/util/kdevicedatabase.h +++ b/kdecore/util/kdevicedatabase.h @@ -85,7 +85,7 @@ public: private: Q_DISABLE_COPY(KDeviceDatabase); - KDeviceDatabasePrivate *d; + KDeviceDatabasePrivate *const d; }; #endif // KDEVICEDATABASE_H diff --git a/kdeui/dialogs/ktimerdialog.h b/kdeui/dialogs/ktimerdialog.h index 5905fe36..6456f917 100644 --- a/kdeui/dialogs/ktimerdialog.h +++ b/kdeui/dialogs/ktimerdialog.h @@ -144,7 +144,7 @@ private: void setupLayout(); Q_DISABLE_COPY(KTimerDialog); - KTimerDialogPrivate *d; + KTimerDialogPrivate *const d; }; #endif // KTIMERDIALOG_H diff --git a/kdeui/notifications/knotification.h b/kdeui/notifications/knotification.h index f837ad66..b8eeee82 100644 --- a/kdeui/notifications/knotification.h +++ b/kdeui/notifications/knotification.h @@ -168,7 +168,7 @@ protected: private: Q_DISABLE_COPY(KNotification); - KNotificationPrivate *d; + KNotificationPrivate *const d; }; Q_DECLARE_OPERATORS_FOR_FLAGS(KNotification::NotificationFlags) diff --git a/kdeui/notifications/knotificationconfigwidget.h b/kdeui/notifications/knotificationconfigwidget.h index fdb35b95..f36a80bf 100644 --- a/kdeui/notifications/knotificationconfigwidget.h +++ b/kdeui/notifications/knotificationconfigwidget.h @@ -52,7 +52,7 @@ Q_SIGNALS: private: friend KNotificationConfigWidgetPrivate; Q_DISABLE_COPY(KNotificationConfigWidget); - KNotificationConfigWidgetPrivate *d; + KNotificationConfigWidgetPrivate *const d; Q_PRIVATE_SLOT(d, void _k_slotItemChanged(QTreeWidgetItem *item, int column)); Q_PRIVATE_SLOT(d, void _k_slotSoundChanged(int index)); diff --git a/kdeui/spell/kspellconfigwidget.h b/kdeui/spell/kspellconfigwidget.h index 483ec632..1ada2034 100644 --- a/kdeui/spell/kspellconfigwidget.h +++ b/kdeui/spell/kspellconfigwidget.h @@ -46,7 +46,7 @@ Q_SIGNALS: void configChanged(); private: - KSpellConfigWidgetPrivate *d; + KSpellConfigWidgetPrivate *const d; Q_DISABLE_COPY(KSpellConfigWidget); }; diff --git a/kdeui/spell/kspeller.h b/kdeui/spell/kspeller.h index 475b1663..9987d609 100644 --- a/kdeui/spell/kspeller.h +++ b/kdeui/spell/kspeller.h @@ -65,7 +65,7 @@ Q_SIGNALS: void done(); private: - KSpellerPrivate *d; + KSpellerPrivate *const d; Q_DISABLE_COPY(KSpeller); }; diff --git a/kdeui/spell/kspellhighlighter.h b/kdeui/spell/kspellhighlighter.h index e170a137..98b73e9e 100644 --- a/kdeui/spell/kspellhighlighter.h +++ b/kdeui/spell/kspellhighlighter.h @@ -51,7 +51,7 @@ protected: virtual void highlightBlock(const QString &text); private: - KSpellHighlighterPrivate *d; + KSpellHighlighterPrivate *const d; Q_DISABLE_COPY(KSpellHighlighter); }; diff --git a/kdeui/util/kkeyboardlayout.h b/kdeui/util/kkeyboardlayout.h index 69fbbc69..d4a7186e 100644 --- a/kdeui/util/kkeyboardlayout.h +++ b/kdeui/util/kkeyboardlayout.h @@ -71,7 +71,7 @@ Q_SIGNALS: private: friend KKeyboardLayoutPrivate; Q_DISABLE_COPY(KKeyboardLayout); - KKeyboardLayoutPrivate * const d; + KKeyboardLayoutPrivate *const d; Q_PRIVATE_SLOT(d, void _k_checkLayouts()) }; diff --git a/kdeui/util/kselectionowner.h b/kdeui/util/kselectionowner.h index d9abb63e..4c9b20b1 100644 --- a/kdeui/util/kselectionowner.h +++ b/kdeui/util/kselectionowner.h @@ -75,7 +75,7 @@ protected: private: Q_DISABLE_COPY(KSelectionOwner); - KSelectionOwnerPrivate * const d; + KSelectionOwnerPrivate *const d; }; #endif // KSELECTIONOWNER_H diff --git a/kdeui/widgets/kpixmapwidget.h b/kdeui/widgets/kpixmapwidget.h index bfd26441..0ad1e3df 100644 --- a/kdeui/widgets/kpixmapwidget.h +++ b/kdeui/widgets/kpixmapwidget.h @@ -69,7 +69,7 @@ protected: private: Q_DISABLE_COPY(KPixmapWidget); - KPixmapWidgetPrivate *d; + KPixmapWidgetPrivate *const d; }; #endif // KPIXMAPWIDGET_H diff --git a/kdeui/widgets/ktimeedit.h b/kdeui/widgets/ktimeedit.h index 77b39091..35a1fab8 100644 --- a/kdeui/widgets/ktimeedit.h +++ b/kdeui/widgets/ktimeedit.h @@ -56,7 +56,7 @@ Q_SIGNALS: private: friend KTimeEditPrivate; Q_DISABLE_COPY(KTimeEdit); - KTimeEditPrivate *d; + KTimeEditPrivate *const d; Q_PRIVATE_SLOT(d, void slotValueChanged(int)) }; diff --git a/kio/kio/khttp.h b/kio/kio/khttp.h index f8b3da78..8994585c 100644 --- a/kio/kio/khttp.h +++ b/kio/kio/khttp.h @@ -104,7 +104,7 @@ protected: private: friend KHTTPPrivate; Q_DISABLE_COPY(KHTTP); - KHTTPPrivate *d; + KHTTPPrivate *const d; }; #endif // KHTTP_H diff --git a/kparts/part.h b/kparts/part.h index da09ee21..3aa86746 100644 --- a/kparts/part.h +++ b/kparts/part.h @@ -81,7 +81,7 @@ protected: protected: PartBase(PartBasePrivate &dd); - PartBasePrivate *d_ptr; + PartBasePrivate *const d_ptr; private: Q_DISABLE_COPY(PartBase) diff --git a/kutils/karchive/karchive.h b/kutils/karchive/karchive.h index 2db18bdd..0c2d2443 100644 --- a/kutils/karchive/karchive.h +++ b/kutils/karchive/karchive.h @@ -181,7 +181,7 @@ Q_SIGNALS: private: Q_DISABLE_COPY(KArchive); - KArchivePrivate* const d; + KArchivePrivate *const d; }; #endif // KARCHIVE_H diff --git a/kutils/karchive/kcompressor.h b/kutils/karchive/kcompressor.h index 379f7743..d7c5107b 100644 --- a/kutils/karchive/kcompressor.h +++ b/kutils/karchive/kcompressor.h @@ -93,7 +93,7 @@ public: private: Q_DISABLE_COPY(KCompressor); - KCompressorPrivate* d; + KCompressorPrivate *const d; }; #endif // KCOMPRESSOR_H diff --git a/kutils/karchive/kdecompressor.h b/kutils/karchive/kdecompressor.h index ff2949e2..c17160d3 100644 --- a/kutils/karchive/kdecompressor.h +++ b/kutils/karchive/kdecompressor.h @@ -86,7 +86,7 @@ public: private: Q_DISABLE_COPY(KDecompressor); - KDecompressorPrivate* d; + KDecompressorPrivate *const d; }; #endif // KDECOMPRESSOR_H diff --git a/kutils/kdnssd/kdnssd.h b/kutils/kdnssd/kdnssd.h index e56188f4..ca66ab27 100644 --- a/kutils/kdnssd/kdnssd.h +++ b/kutils/kdnssd/kdnssd.h @@ -109,7 +109,7 @@ Q_SIGNALS: private: friend KDNSSDPrivate; Q_DISABLE_COPY(KDNSSD); - KDNSSDPrivate *d; + KDNSSDPrivate *const d; }; #endif // KDNSSD_H diff --git a/kutils/kemail/kemail.h b/kutils/kemail/kemail.h index 51dc4c57..381d98ca 100644 --- a/kutils/kemail/kemail.h +++ b/kutils/kemail/kemail.h @@ -89,7 +89,7 @@ public: private: Q_DISABLE_COPY(KEMail); - KEMailPrivate *d; + KEMailPrivate *const d; }; #endif // KEMAIL_H diff --git a/kutils/kemail/kemaildialog.h b/kutils/kemail/kemaildialog.h index 400e874b..f0b373cd 100644 --- a/kutils/kemail/kemaildialog.h +++ b/kutils/kemail/kemaildialog.h @@ -79,7 +79,7 @@ private Q_SLOTS: private: Q_DISABLE_COPY(KEMailDialog); - KEMailDialogPrivate *d; + KEMailDialogPrivate *const d; }; #endif // KEMAILDIALOG_H diff --git a/kutils/kexiv2/kexiv2.h b/kutils/kexiv2/kexiv2.h index 00611ce0..72aae970 100644 --- a/kutils/kexiv2/kexiv2.h +++ b/kutils/kexiv2/kexiv2.h @@ -81,7 +81,7 @@ public: private: Q_DISABLE_COPY(KExiv2); - KExiv2Private * const d; + KExiv2Private *const d; }; #endif // KEXIV2_H diff --git a/kutils/kmediaplayer/kmediaplayer.h b/kutils/kmediaplayer/kmediaplayer.h index 6ddb50c8..c69e2170 100644 --- a/kutils/kmediaplayer/kmediaplayer.h +++ b/kutils/kmediaplayer/kmediaplayer.h @@ -268,7 +268,7 @@ private Q_SLOTS: private: Q_DISABLE_COPY(KAudioPlayer); - KAbstractPlayerPrivate *d; + KAbstractPlayerPrivate *const d; }; @@ -333,7 +333,7 @@ private Q_SLOTS: private: Q_DISABLE_COPY(KMediaPlayer); - KAbstractPlayerPrivate *d; + KAbstractPlayerPrivate *const d; }; #endif // KMEDIAPLAYER_H diff --git a/kutils/kmediaplayer/kmediawidget.h b/kutils/kmediaplayer/kmediawidget.h index 054d28d9..1baf1e2d 100644 --- a/kutils/kmediaplayer/kmediawidget.h +++ b/kutils/kmediaplayer/kmediawidget.h @@ -135,7 +135,7 @@ private Q_SLOTS: private: friend KMediaWidgetPrivate; Q_DISABLE_COPY(KMediaWidget); - KMediaWidgetPrivate *d; + KMediaWidgetPrivate *const d; }; Q_DECLARE_OPERATORS_FOR_FLAGS(KMediaWidget::KMediaOptions); diff --git a/kutils/knetworkmanager/knetworkmanager.h b/kutils/knetworkmanager/knetworkmanager.h index 7c266e83..80a3bb95 100644 --- a/kutils/knetworkmanager/knetworkmanager.h +++ b/kutils/knetworkmanager/knetworkmanager.h @@ -73,7 +73,7 @@ Q_SIGNALS: private: friend KNetworkManagerPrivate; Q_DISABLE_COPY(KNetworkManager); - KNetworkManagerPrivate *d; + KNetworkManagerPrivate *const d; }; Q_DECLARE_METATYPE(KNetworkManager::KNetworkStatus); diff --git a/kutils/kpasswdstore/kpasswdroulettedialog.h b/kutils/kpasswdstore/kpasswdroulettedialog.h index 2477b44a..a31d29e2 100644 --- a/kutils/kpasswdstore/kpasswdroulettedialog.h +++ b/kutils/kpasswdstore/kpasswdroulettedialog.h @@ -95,7 +95,7 @@ public Q_SLOTS: private: Q_DISABLE_COPY(KPasswdRouletteDialog); - KPasswdRouletteDialogPrivate *d; + KPasswdRouletteDialogPrivate *const d; }; #endif // KPASSWDROULETTEDIALOG_H diff --git a/kutils/kpasswdstore/kpasswdstore.h b/kutils/kpasswdstore/kpasswdstore.h index 7ef4de75..b658c0c3 100644 --- a/kutils/kpasswdstore/kpasswdstore.h +++ b/kutils/kpasswdstore/kpasswdstore.h @@ -114,7 +114,7 @@ public: private: Q_DISABLE_COPY(KPasswdStore); - KPasswdStorePrivate *d; + KPasswdStorePrivate *const d; }; #endif // KPASSWDSTORE_H diff --git a/kutils/kpowermanager/kpowermanager.h b/kutils/kpowermanager/kpowermanager.h index 24766a33..c578b1ba 100644 --- a/kutils/kpowermanager/kpowermanager.h +++ b/kutils/kpowermanager/kpowermanager.h @@ -90,7 +90,7 @@ private Q_SLOTS: private: Q_DISABLE_COPY(KPowerManager); - KPowerManagerPrivate *d; + KPowerManagerPrivate *const d; }; #endif // KPOWERMANAGER_H