diff options
author | Timothy Pearson <[email protected]> | 2012-02-24 15:29:11 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-24 15:29:11 -0600 |
commit | b7d96aa82b20eafeecf272bd2b8eb59e9ca45d77 (patch) | |
tree | 31cd0dfbcd812303cb707e37614c5a8bc86afd00 /src/modules/setup | |
parent | 2b0f7501a0f64a3eac41fffc6256714aba7693c2 (diff) | |
download | kvirc-b7d96aa82b20eafeecf272bd2b8eb59e9ca45d77.tar.gz kvirc-b7d96aa82b20eafeecf272bd2b8eb59e9ca45d77.zip |
Set COMPILE_TDE_SUPPORT instead of COMPILE_KDE_SUPPORT
Diffstat (limited to 'src/modules/setup')
-rw-r--r-- | src/modules/setup/setupwizard.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/setup/setupwizard.cpp b/src/modules/setup/setupwizard.cpp index 1a8b5c4f..dd0e8a9b 100644 --- a/src/modules/setup/setupwizard.cpp +++ b/src/modules/setup/setupwizard.cpp @@ -504,7 +504,7 @@ KviSetupWizard::KviSetupWizard() m_pCreateUrlHandlers = new TQCheckBox(__tr2qs("Make KVIrc default IRC client"),m_pDesktopIntegration->m_pVBox); m_pCreateUrlHandlers->setChecked(true); #endif -#ifdef COMPILE_KDE_SUPPORT +#ifdef COMPILE_TDE_SUPPORT m_pCreateDesktopShortcut = new TQCheckBox(__tr2qs("Create desktop shortcut"),m_pDesktopIntegration->m_pVBox); m_pCreateDesktopShortcut->setChecked(true); #endif @@ -845,7 +845,7 @@ void KviSetupWizard::makeLink() CoUninitialize(); #endif //COMPILE_ON_WINDOWS -#ifdef COMPILE_KDE_SUPPORT +#ifdef COMPILE_TDE_SUPPORT TQString tmp = TQDir::homeDirPath(); KviTQString::ensureLastCharIs(tmp,KVI_PATH_SEPARATOR_CHAR); tmp.append("Desktop"); @@ -864,7 +864,7 @@ void KviSetupWizard::makeLink() "X-KDE-SubstituteUID=false\n"; KviFileUtils::writeFile(tmp,contents,false); -#endif //COMPILE_KDE_SUPPORT +#endif //COMPILE_TDE_SUPPORT } @@ -1010,7 +1010,7 @@ void KviSetupWizard::accept() symlink(TQTextCodec::codecForLocale()->fromUnicode(g_pApp->m_szGlobalKvircDir).data(),TQTextCodec::codecForLocale()->fromUnicode(localPath).data()); #endif -#ifdef COMPILE_KDE_SUPPORT +#ifdef COMPILE_TDE_SUPPORT if(m_pCreateDesktopShortcut->isChecked()) makeLink(); #endif |