diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-25 08:12:27 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-25 08:12:27 (GMT) |
commit | 878ccb0645e7f1416daeddd6acdc37fea16b5e25 (patch) | |
tree | ba6fa585ede80d0c931f1fb3f41560ce23227923 /src/gui/painting | |
parent | 1ee8715fe0dfa784be987cc0cfb4519b2f20adb0 (diff) | |
download | Qt-878ccb0645e7f1416daeddd6acdc37fea16b5e25.zip Qt-878ccb0645e7f1416daeddd6acdc37fea16b5e25.tar.gz Qt-878ccb0645e7f1416daeddd6acdc37fea16b5e25.tar.bz2 |
qdoc: Added some missing qdoc comments.
Task-number: 252493
Diffstat (limited to 'src/gui/painting')
-rw-r--r-- | src/gui/painting/qcolormap_mac.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/painting/qcolormap_mac.cpp b/src/gui/painting/qcolormap_mac.cpp index 96da90f..afe0378 100644 --- a/src/gui/painting/qcolormap_mac.cpp +++ b/src/gui/painting/qcolormap_mac.cpp @@ -55,11 +55,17 @@ 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; |