Reverting. Qt docs say:

"We strongly recommend that all subclasses of QObject use the Q_OBJECT macro regardless of whether they actually use signals, slots and properties or not."

svn path=/trunk/kdebase/kwin/; revision=239883
This commit is contained in:
Nadeem Hasan 2003-07-29 16:00:52 +00:00
parent 43495a45f3
commit 4001642ec3
2 changed files with 3 additions and 0 deletions

View file

@ -83,3 +83,5 @@ void GeometryTip::setGeometry( const QRect& geom )
move( geom.x() + ((geom.width() - width()) / 2),
geom.y() + ((geom.height() - height()) / 2) );
}
#include "geometrytip.moc"

View file

@ -14,6 +14,7 @@ namespace KWinInternal {
class GeometryTip: public QLabel
{
Q_OBJECT
public:
GeometryTip( const Client* client, const XSizeHints* xSizeHints, bool resizing );
~GeometryTip();