aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/historycompleter.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@nokia.com>2011-11-23 14:14:57 +0100
committerhjk <qthjk@ovi.com>2011-11-25 11:56:17 +0100
commit91d8ffba3f371cb26dc15f14b611a1796e0381e7 (patch)
tree1af57d3533616622c2f4a7ab6d86ecd99e1f8d99 /src/libs/utils/historycompleter.h
parentd13fca02a482232e7b714a5c0d49c7e6c7437782 (diff)
Coding style (d_ptr --> d)
Change-Id: Iec0d827040f1ac679c8a34a3292c3fc91067e70c Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/libs/utils/historycompleter.h')
-rw-r--r--src/libs/utils/historycompleter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/utils/historycompleter.h b/src/libs/utils/historycompleter.h
index 277821c0c4..e9def5277a 100644
--- a/src/libs/utils/historycompleter.h
+++ b/src/libs/utils/historycompleter.h
@@ -41,7 +41,9 @@ QT_FORWARD_DECLARE_CLASS(QSettings)
namespace Utils {
-class HistoryCompleterPrivate;
+namespace Internal {
+ class HistoryCompleterPrivate;
+}
class QTCREATOR_UTILS_EXPORT HistoryCompleter : public QCompleter
{
@@ -57,11 +59,9 @@ public Q_SLOTS:
void clearHistory();
void saveHistory();
-protected:
- HistoryCompleterPrivate *d_ptr;
-
private:
- Q_DECLARE_PRIVATE(HistoryCompleter)
+ Internal::HistoryCompleterPrivate *d;
+
};
} // namespace Utils