diff options
| author | 2008-11-08 17:17:14 +0000 | |
|---|---|---|
| committer | 2008-11-08 17:17:14 +0000 | |
| commit | 2850c46e4cadcffb55e346c386137f2757b54af2 (patch) | |
| tree | 9bc18c9a9456c6f732e0e7138236edda16798a12 /src/modules/setup | |
| parent | applied patch to fix kvirc4.desktop, thanks to Arfrever (diff) | |
| download | KVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.tar.gz KVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.tar.bz2 KVIrc-2850c46e4cadcffb55e346c386137f2757b54af2.zip | |
hopefully removed all the remaining noisy messages from gcc
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2841 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/setup')
| -rw-r--r-- | src/modules/setup/libkvisetup.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/setup/libkvisetup.cpp b/src/modules/setup/libkvisetup.cpp index f5a4d084a..a19edf450 100644 --- a/src/modules/setup/libkvisetup.cpp +++ b/src/modules/setup/libkvisetup.cpp @@ -80,11 +80,11 @@ KVIMODULEEXPORTFUNC void setup_finish() KVI_OPTION_STRING(KviOption_stringQuitMessage) = KVI_DEFAULT_QUIT_MESSAGE; // We deserve to change the user's part message in something nice :) KVI_OPTION_STRING(KviOption_stringPartMessage) = KVI_DEFAULT_PART_MESSAGE; - + // FIXME: Should we also change these ? // #define KVI_DEFAULT_CTCP_USERINFO_REPLY "I'm too lazy to edit this field." // #define KVI_DEFAULT_AWAY_MESSAGE "I'm off to see the wizard." - + // Apply the choosen default theme QString szDir; /* switch(g_iThemeToApply) @@ -99,11 +99,11 @@ KVIMODULEEXPORTFUNC void setup_finish() break; // default: no theme }*/ - + g_pApp->getGlobalKvircDirectory(szDir,KviApp::Themes,"silverirc"); KviThemeInfo out; KviTheme::load(szDir,out); - + if(!szMircServers.isEmpty()) { g_pServerDataBase->importFromMircIni(szMircServers,szMircIni, @@ -130,18 +130,18 @@ KVIMODULEEXPORTFUNC void setup_finish() } } -static bool setup_module_init(KviModule *m) +static bool setup_module_init(KviModule *) { bNeedToApplyDefaults=true; return true; } -static bool setup_module_cleanup(KviModule *m) +static bool setup_module_cleanup(KviModule *) { return true; } -static bool setup_module_can_unload(KviModule *m) +static bool setup_module_can_unload(KviModule *) { return true; // can be always unloaded...this module does basically nothing } |
