diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-25 09:57:30 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-25 09:57:30 (GMT) |
commit | e5615b9cf4c981bb8d0fec48eacd6c11c124a3b0 (patch) | |
tree | acb80ef416f487a326034df2253fa68a67e642e7 /src/gui | |
parent | 58f0112b11e42ece4c7fa3456ae46e8c86fa0bd6 (diff) | |
download | Qt-e5615b9cf4c981bb8d0fec48eacd6c11c124a3b0.zip Qt-e5615b9cf4c981bb8d0fec48eacd6c11c124a3b0.tar.gz Qt-e5615b9cf4c981bb8d0fec48eacd6c11c124a3b0.tar.bz2 |
qdoc: Added some missing qdoc comments.
Task-number: 252491
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/painting/qcolor.cpp | 8 | ||||
-rw-r--r-- | src/gui/painting/qcolormap_mac.cpp | 6 | ||||
-rw-r--r-- | src/gui/painting/qcolormap_x11.cpp | 4 |
3 files changed, 8 insertions, 10 deletions
diff --git a/src/gui/painting/qcolor.cpp b/src/gui/painting/qcolor.cpp index 1723a19..c50004e 100644 --- a/src/gui/painting/qcolor.cpp +++ b/src/gui/painting/qcolor.cpp @@ -2241,4 +2241,12 @@ QDataStream &operator>>(QDataStream &stream, QColor &color) \sa QColor::rgb(), QColor::rgba() */ +/*! \fn void QColormap::initialize() + \internal +*/ + +/*! \fn void QColormap::cleanup() + \internal +*/ + QT_END_NAMESPACE diff --git a/src/gui/painting/qcolormap_mac.cpp b/src/gui/painting/qcolormap_mac.cpp index afe0378..96da90f 100644 --- a/src/gui/painting/qcolormap_mac.cpp +++ b/src/gui/painting/qcolormap_mac.cpp @@ -55,17 +55,11 @@ public: }; static QColormap *qt_mac_global_map = 0; -/*! - Creates the class's internal colormap. - */ void QColormap::initialize() { qt_mac_global_map = new QColormap; } -/*! - Deletes the class's internal colormap. - */ void QColormap::cleanup() { delete qt_mac_global_map; diff --git a/src/gui/painting/qcolormap_x11.cpp b/src/gui/painting/qcolormap_x11.cpp index ccf6955..c9186b1 100644 --- a/src/gui/painting/qcolormap_x11.cpp +++ b/src/gui/painting/qcolormap_x11.cpp @@ -337,8 +337,6 @@ static void init_direct(QColormapPrivate *d, bool ownColormap) static QColormap **cmaps = 0; -/*! \internal -*/ void QColormap::initialize() { Display *display = QX11Info::display(); @@ -578,8 +576,6 @@ void QColormap::initialize() } } -/*! \internal -*/ void QColormap::cleanup() { Display *display = QX11Info::display(); |