From 7da91a552a819e42422dc93bc5c0c621bb8cf756 Mon Sep 17 00:00:00 2001 From: Pavel Heimlich Date: Sat, 23 Oct 2010 07:02:17 +0000 Subject: [PATCH] Qt macros should not be followed by ;. Fix build with Sun Studio. svn path=/trunk/KDE/kdebase/workspace/; revision=1188803 --- scripting/workspace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripting/workspace.h b/scripting/workspace.h index 550440b2bc..f4c9539c79 100644 --- a/scripting/workspace.h +++ b/scripting/workspace.h @@ -38,14 +38,14 @@ class Workspace : public QObject { Q_OBJECT //Don't add WRITE for now. Access considerations - Q_PROPERTY( int currentDesktop READ currentDesktop ); + Q_PROPERTY( int currentDesktop READ currentDesktop ) private: static KWin::Workspace* centralObject; static SWrapper::Client* clientHolder; QScriptEngine* centralEngine; - Q_DISABLE_COPY(Workspace); + Q_DISABLE_COPY(Workspace) public slots: void sl_desktopPresenceChanged(KWin::Client*, int);