diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:13:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:13:02 -0600 |
commit | 8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96 (patch) | |
tree | bf71d4bfa94d0561e80456400ae5fe2bb501fbd8 /konqueror/client | |
parent | e8a1cdc01d38125bea12d5494db977ae6429919a (diff) | |
download | tdebase-8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96.tar.gz tdebase-8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96.zip |
Rename additional global functions and variables for tqt3
Diffstat (limited to 'konqueror/client')
-rw-r--r-- | konqueror/client/kfmclient.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/konqueror/client/kfmclient.cc b/konqueror/client/kfmclient.cc index 99a4a82a1..e2d07c0dd 100644 --- a/konqueror/client/kfmclient.cc +++ b/konqueror/client/kfmclient.cc @@ -232,8 +232,8 @@ static bool startNewKonqueror( TQString url, TQString mimetype, const TQString& static int currentScreen() { - if( qt_xdisplay() != NULL ) - return qt_xscreen(); + if( tqt_xdisplay() != NULL ) + return tqt_xscreen(); // case when there's no KApplication instance const char* env = getenv( "DISPLAY" ); if( env == NULL ) @@ -286,12 +286,12 @@ void clientApp::sendASNChange() KStartupInfoData data; data.addPid( 0 ); // say there's another process for this ASN with unknown PID data.setHostname(); // ( no need to bother to get this konqy's PID ) - Display* dpy = qt_xdisplay(); + Display* dpy = tqt_xdisplay(); if( dpy == NULL ) // we may be running without TQApplication here dpy = XOpenDisplay( NULL ); if( dpy != NULL ) KStartupInfo::sendChangeX( dpy, id, data ); - if( dpy != NULL && dpy != qt_xdisplay()) + if( dpy != NULL && dpy != tqt_xdisplay()) XCloseDisplay( dpy ); } |