X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fbacklogsettingspage.cpp;h=5af18c4f56fa135e8a8532d7d0a8814c5528afca;hb=0ec85b3e2ce83908af510a25d40eb2b9a0f0ffed;hp=eb5c59c45943ee97dfda3594c0be4beb34800972;hpb=9d919506679e00fcdf47ab3cbebad414d77bda7d;p=quassel.git diff --git a/src/qtui/settingspages/backlogsettingspage.cpp b/src/qtui/settingspages/backlogsettingspage.cpp index eb5c59c4..5af18c4f 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("Interface"), tr("Backlog Fetching"), 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())); }