From 495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 3 Jan 2011 20:16:47 +0000 Subject: Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kstart/kstart.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'kstart') diff --git a/kstart/kstart.cpp b/kstart/kstart.cpp index f3be8e607..3c0f61c1d 100644 --- a/kstart/kstart.cpp +++ b/kstart/kstart.cpp @@ -41,7 +41,7 @@ static bool iconify = false; static bool toSysTray = false; static bool fullscreen = false; static unsigned long state = 0; -static unsigned long mask = 0; +static unsigned long tqmask = 0; static NET::WindowType windowtype = NET::Unknown; static KWinModule* kwinmodule; @@ -87,8 +87,8 @@ void KStart::sendRule() { if( windowclass ) message += "wmclass=" + windowclass + "\nwmclassmatch=1\n" // 1 = exact match + "wmclasscomplete=" - // if windowclass contains a space (i.e. 2 words, use whole WM_CLASS) - + ( windowclass.contains( ' ' ) ? "true" : "false" ) + "\n"; + // if windowclass tqcontains a space (i.e. 2 words, use whole WM_CLASS) + + ( windowclass.tqcontains( ' ' ) ? "true" : "false" ) + "\n"; if( windowtitle || windowclass ) { // always ignore these window types message += "types=" + TQCString().setNum( -1U & @@ -153,7 +153,7 @@ void KStart::windowAdded(WId w){ XClassHint hint; if( !XGetClassHint( qt_xdisplay(), w, &hint )) return; - TQCString cls = windowclass.contains( ' ' ) + TQCString cls = windowclass.tqcontains( ' ' ) ? TQCString( hint.res_name ) + ' ' + hint.res_class : TQCString( hint.res_class ); cls = cls.lower(); XFree( hint.res_name ); @@ -185,7 +185,7 @@ static bool wstate_withdrawn( WId winid ) &length, &after, &data ); bool withdrawn = TRUE; if ( r == Success && data && format == 32 ) { - Q_UINT32 *wstate = (Q_UINT32*)data; + TQ_UINT32 *wstate = (TQ_UINT32*)data; withdrawn = (*wstate == WithdrawnState ); XFree( (char *)data ); } @@ -225,7 +225,7 @@ void KStart::applyStyle(WId w ) { } if ( state ) - info.setState( state, mask ); + info.setState( state, tqmask ); if ( toSysTray ) { TQApplication::beep(); @@ -233,7 +233,7 @@ void KStart::applyStyle(WId w ) { } if ( fullscreen ) { - TQRect r = TQApplication::desktop()->geometry(); + TQRect r = TQApplication::desktop()->tqgeometry(); XMoveResizeWindow( qt_xdisplay(), w, r.x(), r.y(), r.width(), r.height() ); } @@ -351,35 +351,35 @@ int main( int argc, char *argv[] ) if ( args->isSet( "keepabove" ) ) { state |= NET::KeepAbove; - mask |= NET::KeepAbove; + tqmask |= NET::KeepAbove; } else if ( args->isSet( "keepbelow" ) ) { state |= NET::KeepBelow; - mask |= NET::KeepBelow; + tqmask |= NET::KeepBelow; } if ( args->isSet( "skiptaskbar" ) ) { state |= NET::SkipTaskbar; - mask |= NET::SkipTaskbar; + tqmask |= NET::SkipTaskbar; } if ( args->isSet( "skippager" ) ) { state |= NET::SkipPager; - mask |= NET::SkipPager; + tqmask |= NET::SkipPager; } activate = args->isSet("activate"); if ( args->isSet("maximize") ) { state |= NET::Max; - mask |= NET::Max; + tqmask |= NET::Max; } if ( args->isSet("maximize-vertically") ) { state |= NET::MaxVert; - mask |= NET::MaxVert; + tqmask |= NET::MaxVert; } if ( args->isSet("maximize-horizontally") ) { state |= NET::MaxHoriz; - mask |= NET::MaxHoriz; + tqmask |= NET::MaxHoriz; } iconify = args->isSet("iconify"); @@ -388,7 +388,7 @@ int main( int argc, char *argv[] ) NETRootInfo i( qt_xdisplay(), NET::Supported ); if( i.isSupported( NET::FullScreen )) { state |= NET::FullScreen; - mask |= NET::FullScreen; + tqmask |= NET::FullScreen; } else { windowtype = NET::Override; fullscreen = true; -- cgit v1.2.3