From f7e71d47719ab6094cf4a9fafffa5ea351973522 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 13 Jan 2011 08:32:36 +0000 Subject: Initial conversion for TQt for Qt4 3.4.0 TP2 This will also compile with TQt for Qt3, and should not cause any problems with dependent modules such as kdebase. If it does then it needs to be fixed! git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1214149 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdeui/kpanelapplet.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'kdeui/kpanelapplet.cpp') diff --git a/kdeui/kpanelapplet.cpp b/kdeui/kpanelapplet.cpp index 817d9de60..d592f35cc 100644 --- a/kdeui/kpanelapplet.cpp +++ b/kdeui/kpanelapplet.cpp @@ -47,7 +47,7 @@ KPanelApplet::KPanelApplet(const TQString& configFile, Type type, : TQFrame(parent, name, f) , _type(type) , _position( pBottom ) - , _alignment( LeftTop ) + , _tqalignment( LeftTop ) , _config(0) , _actions(actions) , d(new KPanelApplet::KPanelAppletPrivate()) @@ -78,11 +78,11 @@ void KPanelApplet::setPosition( Position p ) positionChange( p ); } -void KPanelApplet::setAlignment( Alignment a ) +void KPanelApplet::tqsetAlignment( Alignment a ) { - if( _alignment == a ) return; - _alignment = a; - alignmentChange( a ); + if( _tqalignment == a ) return; + _tqalignment = a; + tqalignmentChange( a ); } // FIXME: Remove implementation for KDE 4 @@ -97,9 +97,9 @@ void KPanelApplet::positionChange( Position ) Qt::Orientation KPanelApplet::orientation() const { if( _position == pTop || _position == pBottom ) { - return Horizontal; + return Qt::Horizontal; } else { - return Vertical; + return Qt::Vertical; } } @@ -146,15 +146,15 @@ void KPanelApplet::watchForFocus(TQWidget* widget, bool watch) if (watch) { - if (d->watchedForFocus.find(widget) == -1) + if (d->watchedForFocus.tqfind(TQT_TQOBJECT(widget)) == -1) { - d->watchedForFocus.append(widget); + d->watchedForFocus.append(TQT_TQOBJECT(widget)); widget->installEventFilter(this); } } - else if (d->watchedForFocus.find(widget) != -1) + else if (d->watchedForFocus.tqfind(TQT_TQOBJECT(widget)) != -1) { - d->watchedForFocus.remove(widget); + d->watchedForFocus.remove(TQT_TQOBJECT(widget)); widget->removeEventFilter(this); } } @@ -172,7 +172,7 @@ void KPanelApplet::needsFocus(bool focus) bool KPanelApplet::eventFilter(TQObject *o, TQEvent * e) { - if (d->watchedForFocus.find(o) != -1) + if (d->watchedForFocus.tqfind(o) != -1) { if (e->type() == TQEvent::MouseButtonRelease || e->type() == TQEvent::FocusIn) -- cgit v1.2.3