aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Fabio Bas2011-09-04 14:18:05 +0000
committerGravatar Fabio Bas2011-09-04 14:18:05 +0000
commiteab457e1fc83aef196d3799abb8bf8d2addb07ba (patch)
tree797c5af9bebfd74accbe8fb59bcd4548b37bf8b5 /src/modules
parentfix for #1203 (diff)
downloadKVIrc-eab457e1fc83aef196d3799abb8bf8d2addb07ba.tar.gz
KVIrc-eab457e1fc83aef196d3799abb8bf8d2addb07ba.tar.bz2
KVIrc-eab457e1fc83aef196d3799abb8bf8d2addb07ba.zip
small fix in options->connection: two unrelated options were disabled by "reconnect on unexpected disconnect"
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5964 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/options/OptionsWidget_connection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/options/OptionsWidget_connection.cpp b/src/modules/options/OptionsWidget_connection.cpp
index cd97b7ead..3456a1bdf 100644
--- a/src/modules/options/OptionsWidget_connection.cpp
+++ b/src/modules/options/OptionsWidget_connection.cpp
@@ -54,10 +54,10 @@ OptionsWidget_connection::OptionsWidget_connection(QWidget * parent)
b1 = addBoolSelector(gbox,__tr2qs_ctx("Keep queries open","options"),KviOption_boolKeepQueriesOpenOnUnexpectedDisconnect,true);
mergeTip(b1,__tr2qs_ctx("<center>This option will cause KVIrc to keep queries open after an unexpected disconnect.</center>","options"));
- b1 = addBoolSelector(gbox,__tr2qs_ctx("Rejoin channels after reconnect","options"),KviOption_boolRejoinChannelsAfterReconnect,KVI_OPTION_BOOL(KviOption_boolAutoReconnectOnUnexpectedDisconnect));
+ b1 = addBoolSelector(gbox,__tr2qs_ctx("Rejoin channels after reconnect","options"),KviOption_boolRejoinChannelsAfterReconnect,true);
mergeTip(b1,__tr2qs_ctx("<center>This option will cause KVIrc to rejoin channels after a successful reconnect attempt.</center>","options"));
- b1 = addBoolSelector(gbox,__tr2qs_ctx("Reopen queries after reconnect","options"),KviOption_boolReopenQueriesAfterReconnect,KVI_OPTION_BOOL(KviOption_boolAutoReconnectOnUnexpectedDisconnect));
+ b1 = addBoolSelector(gbox,__tr2qs_ctx("Reopen queries after reconnect","options"),KviOption_boolReopenQueriesAfterReconnect,true);
mergeTip(b1,__tr2qs_ctx("<center>This option will cause KVIrc to reopen query windows after a successful reconnect attempt.</center>","options"));
// gbox = addGroupBox(0,1,0,1,Qt::Horizontal,__tr2qs_ctx("On Unexpected Disconnect","options"));