diff options
| author | Peter Penz <[email protected]> | 2009-06-20 15:45:18 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-06-20 15:45:18 +0000 |
| commit | 5e73577d6c3520fa3dfd63646795e628cf2a0614 (patch) | |
| tree | bca7b798a6bd0936e9fff6f2c5fc848edaaa1724 /src/tooltips/ktooltip_p.h | |
| parent | 514566db88e51ba39695b083f3257c6c9d7356b4 (diff) | |
Tooltip interface cleanup: Don't use const-pointers as parameters if the implementation cannot handle 0-pointers. Use a const-reference instead.
svn path=/trunk/KDE/kdebase/apps/; revision=984342
Diffstat (limited to 'src/tooltips/ktooltip_p.h')
| -rw-r--r-- | src/tooltips/ktooltip_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tooltips/ktooltip_p.h b/src/tooltips/ktooltip_p.h index 8299bf045..5aa5326cf 100644 --- a/src/tooltips/ktooltip_p.h +++ b/src/tooltips/ktooltip_p.h @@ -49,8 +49,8 @@ public: private: KToolTipManager(); - KTipLabel *label; - KToolTipItem *currentItem; + KTipLabel *m_label; + KToolTipItem *m_currentItem; KToolTipDelegate *m_delegate; QPoint m_tooltipPos; |
