diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:33:46 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:33:46 -0600 |
commit | 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (patch) | |
tree | 19bc4d69423c21bcde8ac0cb6fcb11146ae19137 /src/misc/Debug.cpp | |
parent | e6d6692eda797b10f322a83ffdcf23fca719709e (diff) | |
download | rosegarden-4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.tar.gz rosegarden-4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/misc/Debug.cpp')
-rw-r--r-- | src/misc/Debug.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/Debug.cpp b/src/misc/Debug.cpp index 502b68d..7218226 100644 --- a/src/misc/Debug.cpp +++ b/src/misc/Debug.cpp @@ -30,7 +30,7 @@ #include <tqregion.h> #include <tqstringlist.h> #include <tqpen.h> -#include <tqbrush.h> +#include <brush.h> #include <tqsize.h> #include <kurl.h> #endif @@ -307,8 +307,8 @@ operator<<(kdbgstream &dbg, const TQRegion& reg ) TQMemArray<TQRect>rs = reg.rects(); for (uint i = 0;i < rs.size();++i) - dbg << TQString("[%1,%2 - %3x%4] ").tqarg(rs[i].x()).tqarg(rs[i].y()) - .tqarg(rs[i].width()).tqarg(rs[i].height() ) ; + dbg << TQString("[%1,%2 - %3x%4] ").arg(rs[i].x()).arg(rs[i].y()) + .arg(rs[i].width()).arg(rs[i].height() ) ; dbg << "]"; return dbg; |