summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/HACKING
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-02-05 11:19:23 +0900
committerMichele Calgaro <[email protected]>2024-02-06 10:19:08 +0900
commit9bea52fdd563a80f22e26375afca2d0ac461b379 (patch)
treebf4484bb49b96ea9f1b766df543d39bb4b5704a9 /kopete/protocols/oscar/liboscar/HACKING
parent5d85a610bd02473cbcb1fe25f02c6590b31b6be0 (diff)
downloadtdenetwork-9bea52fdd563a80f22e26375afca2d0ac461b379.tar.gz
tdenetwork-9bea52fdd563a80f22e26375afca2d0ac461b379.zip
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit e050a3eb30a884522a3b09df0c37c8fc69c0c5bb)
Diffstat (limited to 'kopete/protocols/oscar/liboscar/HACKING')
-rw-r--r--kopete/protocols/oscar/liboscar/HACKING10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/protocols/oscar/liboscar/HACKING b/kopete/protocols/oscar/liboscar/HACKING
index 38325050..1e1185d0 100644
--- a/kopete/protocols/oscar/liboscar/HACKING
+++ b/kopete/protocols/oscar/liboscar/HACKING
@@ -122,15 +122,15 @@ not be inline in the headers. The organization of the members in a class should
roughly as follows:
public:
-public Q_SLOTS:
+public slots:
protected:
-protected Q_SLOTS:
-Q_SIGNALS:
+protected slots:
+signals:
private: // member funtions
-private Q_SLOTS:
+private slots:
private: // member variables
-If there are no private Q_SLOTS there is no need for two private sections, however
+If there are no private slots there is no need for two private sections, however
private functions and private variables should be clearly separated.
The implementations files -- .cpp files -- should follow (when possible) the