diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:25 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:25 -0600 | 
| commit | 2c01fd64ddde84a6d78b632f7f3b7c3560dc288c (patch) | |
| tree | 65f4f4370cf4269757d7fa4d0f4d15996a1bf68f /twin/workspace.cpp | |
| parent | 73c08b592db45af554b9f21029bc549d70f683ab (diff) | |
| download | tdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.tar.gz tdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.zip | |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 73c08b592db45af554b9f21029bc549d70f683ab.
Diffstat (limited to 'twin/workspace.cpp')
| -rw-r--r-- | twin/workspace.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/twin/workspace.cpp b/twin/workspace.cpp index a46e3bbc9..44045838c 100644 --- a/twin/workspace.cpp +++ b/twin/workspace.cpp @@ -23,7 +23,7 @@ License. See the file "COPYING" for the exact licensing terms.  #include <tqregexp.h>  #include <tqpainter.h>  #include <tqbitmap.h> -#include <clipboard.h> +#include <tqclipboard.h>  #include <kmenubar.h>  #include <kprocess.h>  #include <kglobalaccel.h> @@ -1056,7 +1056,7 @@ void Workspace::slotReconfigure()          topmenu_selection->release();          lostTopMenuSelection();          } -    topmenu_height = 0; // invalidate used menu height +    topmenu_height = 0; // tqinvalidate used menu height      if( managingTopMenus())          {          updateTopMenuGeometry(); @@ -1938,7 +1938,7 @@ void Workspace::slotGrabWindow()              int count, order;              XRectangle* rects = XShapeGetRectangles( qt_xdisplay(), active_client->frameId(),                                                       ShapeBounding, &count, &order); -	    //The ShapeBounding region is the outermost shape of the window; +	    //The ShapeBounding region is the outermost tqshape of the window;  	    //ShapeBounding - ShapeClipping is defined to be the border.  	    //Since the border area is part of the window, we use bounding  	    // to limit our work region @@ -1956,7 +1956,7 @@ void Workspace::slotGrabWindow()  		//Get the masked away area.                  TQRegion maskedAway = bbox - contents; -                TQMemArray<TQRect> maskedAwayRects = maskedAway.rects(); +                TQMemArray<TQRect> maskedAwayRects = maskedAway.tqrects();  		//Construct a bitmap mask from the rectangles                  TQBitmap mask( snapshot.width(), snapshot.height()); @@ -1969,7 +1969,7 @@ void Workspace::slotGrabWindow()                  }              } -        TQClipboard *cb = TQApplication::clipboard(); +        TQClipboard *cb = TQApplication::tqclipboard();          cb->setPixmap( snapshot );          }      else @@ -1982,7 +1982,7 @@ void Workspace::slotGrabWindow()  void Workspace::slotGrabDesktop()      {      TQPixmap p = TQPixmap::grabWindow( qt_xrootwin() ); -    TQClipboard *cb = TQApplication::clipboard(); +    TQClipboard *cb = TQApplication::tqclipboard();      cb->setPixmap( p );      } @@ -2606,7 +2606,7 @@ int Workspace::topMenuHeight() const          { // simply create a dummy menubar and use its preffered height as the menu height          KMenuBar tmpmenu;          tmpmenu.insertItem( "dummy" ); -        topmenu_height = tmpmenu.sizeHint().height(); +        topmenu_height = tmpmenu.tqsizeHint().height();          }      return topmenu_height;      } | 
