diff options
author | Timothy Pearson <[email protected]> | 2012-03-07 21:15:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-07 21:15:28 -0600 |
commit | 2242eb95a7bcd686207e2043340fed5ccc8b7609 (patch) | |
tree | fd85f1fe082773ae6bc422b71392ded6bfa3c903 /kate/app/katedocmanageriface.cpp | |
parent | 0a382195c4b1822d4120a50d8a6c1269467386ac (diff) | |
download | tdebase-2242eb95a7bcd686207e2043340fed5ccc8b7609.tar.gz tdebase-2242eb95a7bcd686207e2043340fed5ccc8b7609.zip |
Rename additional members for tqt3
Diffstat (limited to 'kate/app/katedocmanageriface.cpp')
-rw-r--r-- | kate/app/katedocmanageriface.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kate/app/katedocmanageriface.cpp b/kate/app/katedocmanageriface.cpp index 5ef01a1df..034c5aa03 100644 --- a/kate/app/katedocmanageriface.cpp +++ b/kate/app/katedocmanageriface.cpp @@ -35,7 +35,7 @@ DCOPRef KateDocManagerDCOPIface::document (uint n) if (!doc) return DCOPRef (); - DCOPObject *obj = static_cast<DCOPObject*>(doc->qt_cast("DCOPObject")); + DCOPObject *obj = static_cast<DCOPObject*>(doc->tqt_cast("DCOPObject")); if (!obj) return DCOPRef (); @@ -50,7 +50,7 @@ DCOPRef KateDocManagerDCOPIface::activeDocument () if (!doc) return DCOPRef (); - DCOPObject *obj = static_cast<DCOPObject*>(doc->qt_cast("DCOPObject")); + DCOPObject *obj = static_cast<DCOPObject*>(doc->tqt_cast("DCOPObject")); if (!obj) return DCOPRef (); @@ -75,7 +75,7 @@ DCOPRef KateDocManagerDCOPIface::documentWithID (uint id) if (!doc) return DCOPRef (); - DCOPObject *obj = static_cast<DCOPObject*>(doc->qt_cast("DCOPObject")); + DCOPObject *obj = static_cast<DCOPObject*>(doc->tqt_cast("DCOPObject")); if (!obj) return DCOPRef (); @@ -90,7 +90,7 @@ DCOPRef KateDocManagerDCOPIface::openURL (KURL url, TQString encoding) if (!doc) return DCOPRef (); - DCOPObject *obj = static_cast<DCOPObject*>(doc->qt_cast("DCOPObject")); + DCOPObject *obj = static_cast<DCOPObject*>(doc->tqt_cast("DCOPObject")); if (!obj) return DCOPRef (); |