X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fbacklogsettingspage.cpp;h=490cdaf11a9d03a891195664fb8e4581f9e3d387;hp=eb5c59c45943ee97dfda3594c0be4beb34800972;hb=7a027623b7a98104f5e39cadc046b311ca451da4;hpb=9d919506679e00fcdf47ab3cbebad414d77bda7d diff --git a/src/qtui/settingspages/backlogsettingspage.cpp b/src/qtui/settingspages/backlogsettingspage.cpp index eb5c59c4..490cdaf1 100644 --- a/src/qtui/settingspages/backlogsettingspage.cpp +++ b/src/qtui/settingspages/backlogsettingspage.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -24,11 +24,15 @@ #include "backlogsettings.h" BacklogSettingsPage::BacklogSettingsPage(QWidget *parent) - : SettingsPage(tr("Behaviour"), tr("Backlog"), parent) + : SettingsPage(tr("Misc"), tr("Backlog"), parent) { ui.setupUi(this); initAutoWidgets(); // not an auto widget, because we store index + 1 + + // FIXME: global backlog requester disabled until issues ruled out + ui.requesterType->removeItem(2); + connect(ui.requesterType, SIGNAL(currentIndexChanged(int)), this, SLOT(widgetHasChanged())); }