diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 | 
| commit | 79b21d47bce1ee428affc97534cd8b257232a871 (patch) | |
| tree | 0df1fa0109d9f2bcef932eda8b5c25b2e06669ed /nsplugins/viewer/nsplugin.cpp | |
| parent | 9a898d493f493adbc404f7223043c85f3817472b (diff) | |
| download | tdebase-79b21d47bce1ee428affc97534cd8b257232a871.tar.gz tdebase-79b21d47bce1ee428affc97534cd8b257232a871.zip | |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'nsplugins/viewer/nsplugin.cpp')
| -rw-r--r-- | nsplugins/viewer/nsplugin.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/nsplugins/viewer/nsplugin.cpp b/nsplugins/viewer/nsplugin.cpp index af9e72d32..493f149b6 100644 --- a/nsplugins/viewer/nsplugin.cpp +++ b/nsplugins/viewer/nsplugin.cpp @@ -514,20 +514,20 @@ void g_NPN_ReloadPlugins(NPBool reloadPages)  {     // http://devedge.netscape.com/library/manuals/2002/plugin/1.0/npn_api15.html#999713     kdDebug(1431) << "g_NPN_ReloadPlugins()" << endl; -   KProcess p; -   p << KGlobal::dirs()->findExe("nspluginscan"); +   TDEProcess p; +   p << TDEGlobal::dirs()->findExe("nspluginscan");     if (reloadPages) {        // This is the proper way, but it cannot be done because we have no        // handle to the caller!  How stupid!  We cannot force all konqi windows        // to reload - that would be evil. -      //p.start(KProcess::Block); +      //p.start(TDEProcess::Block);        // Let's only allow the caller to be reloaded, not everything.        //if (_callback)        //   _callback->reloadPage(); -      p.start(KProcess::DontCare); +      p.start(TDEProcess::DontCare);     } else { -      p.start(KProcess::DontCare); +      p.start(TDEProcess::DontCare);     }  } | 
