diff options
| author | 2010-08-20 21:09:32 +0000 | |
|---|---|---|
| committer | 2010-08-20 21:09:32 +0000 | |
| commit | 22d2944a5884e0ff93ed0f81091e75790e4dee5d (patch) | |
| tree | 9e60101e6a3d0628097a685a5d831a27ac4370dc /src/modules/notifier/notifiermessage.cpp | |
| parent | *wave* to Gizmokid2005 the grammar nazi (diff) | |
| download | KVIrc-22d2944a5884e0ff93ed0f81091e75790e4dee5d.tar.gz KVIrc-22d2944a5884e0ff93ed0f81091e75790e4dee5d.tar.bz2 KVIrc-22d2944a5884e0ff93ed0f81091e75790e4dee5d.zip | |
tweaked a bit the dbus notifier;
updated todo;
cleaned code;
fixed typos;
improved hungarian notation;
added doxygen comments;
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4913 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier/notifiermessage.cpp')
| -rw-r--r-- | src/modules/notifier/notifiermessage.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/notifier/notifiermessage.cpp b/src/modules/notifier/notifiermessage.cpp index a5d69a1cd..d46a38956 100644 --- a/src/modules/notifier/notifiermessage.cpp +++ b/src/modules/notifier/notifiermessage.cpp @@ -32,7 +32,7 @@ #include <QRect> #include <QResizeEvent> -KviNotifierMessage::KviNotifierMessage(QPixmap * pPixmap, const QString &szText) +KviNotifierMessage::KviNotifierMessage(QPixmap * pPixmap, const QString & szText) { m_pLabel0 = 0; m_pLabel1 = 0; @@ -63,7 +63,7 @@ KviNotifierMessage::~KviNotifierMessage() void KviNotifierMessage::updateGui() { - bool bShowImages=KVI_OPTION_BOOL(KviOption_boolIrcViewShowImages); + bool bShowImages = KVI_OPTION_BOOL(KviOption_boolIrcViewShowImages); if(m_pLabel0) delete m_pLabel0; @@ -96,5 +96,4 @@ void KviNotifierMessage::updateGui() m_pHBox->addWidget(m_pLabel0); } m_pHBox->addWidget(m_pLabel1); - } |
