Private slots should be named starting with _q_
authorSergio Ahumada <sergio.ahumada@nokia.com>
Fri, 31 Aug 2012 21:48:30 +0000 (23:48 +0200)
committerQt by Nokia <qt-info@nokia.com>
Mon, 3 Sep 2012 09:05:49 +0000 (11:05 +0200)
commit8cba00ebf55090d717e41c14f5f1044faac578a7
tree5644c4a5add623fb00be1b1d9f16c281755ce3e1
parenta36efc37a1941a4b4cb239fa2ca0bc12ab7569ec
Private slots should be named starting with _q_

This is to reduce the risk of collisions with signals/slots in user classes

 q_updateFocusObject(QObject *object) => _q_updateFocusObject(QObject *object)
 q_checkFocusObject(QObject *object)  => _q_checkFocusObject(QObject *object)
 q_connectFocusObject()               => _q_connectFocusObject()
 emitActivated(QPlatformSystemTrayIcon::ActivationReason) => _q_emitActivated(QPlatformSystemTrayIcon::ActivationReason)

Change-Id: I148913f1e24a80fe5cacfd737d1b455b805cfced
Reviewed-by: Christoph Schleifenbaum <christoph.schleifenbaum@kdab.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
src/gui/kernel/qguiapplication.cpp
src/gui/kernel/qguiapplication.h
src/gui/kernel/qguiapplication_p.h
src/gui/kernel/qinputmethod.cpp
src/gui/kernel/qinputmethod.h
src/gui/kernel/qinputmethod_p.h
src/widgets/util/qsystemtrayicon.cpp
src/widgets/util/qsystemtrayicon.h
src/widgets/util/qsystemtrayicon_p.h