cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / settingspages / backlogsettingspage.cpp
index 8afcbbc..f006c53 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2013 by the Quassel Project                        *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 
 #include "backlogsettingspage.h"
 
-#include "qtui.h"
+#include "backlogrequester.h"
 #include "backlogsettings.h"
+#include "qtui.h"
+#include "widgethelpers.h"
 
-BacklogSettingsPage::BacklogSettingsPage(QWidget *parent)
+BacklogSettingsPage::BacklogSettingsPage(QWidgetparent)
     : SettingsPage(tr("Interface"), tr("Backlog Fetching"), parent)
 {
     ui.setupUi(this);
@@ -31,26 +33,24 @@ BacklogSettingsPage::BacklogSettingsPage(QWidget *parent)
     // not an auto widget, because we store index + 1
 
     // FIXME: global backlog requester disabled until issues ruled out
-    ui.requesterType->removeItem(2);
+    ui.requesterType->removeItem(3);
+    // If modifying ui.requesterType's item list, set to the index of "Globally unread messages"
 
-    connect(ui.requesterType, SIGNAL(currentIndexChanged(int)), this, SLOT(widgetHasChanged()));
+    connectToWidgetChangedSignal(ui.requesterType, this, &BacklogSettingsPage::widgetHasChanged);
 }
 
-
 bool BacklogSettingsPage::hasDefaults() const
 {
     return true;
 }
 
-
 void BacklogSettingsPage::defaults()
 {
-    ui.requesterType->setCurrentIndex(0);
+    ui.requesterType->setCurrentIndex(BacklogRequester::AsNeeded - 1);
 
     SettingsPage::defaults();
 }
 
-
 void BacklogSettingsPage::load()
 {
     BacklogSettings backlogSettings;
@@ -61,7 +61,6 @@ void BacklogSettingsPage::load()
     SettingsPage::load();
 }
 
-
 void BacklogSettingsPage::save()
 {
     BacklogSettings backlogSettings;
@@ -71,7 +70,6 @@ void BacklogSettingsPage::save()
     SettingsPage::save();
 }
 
-
 void BacklogSettingsPage::widgetHasChanged()
 {
     setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt());