#include "trashsettingspage.h"
#include <KCModuleProxy>
-#include <kdialog.h>
-#include <kvbox.h>
-
-#include <settings/dolphinsettings.h>
+#include <KDialog>
+#include <KVBox>
#include <QVBoxLayout>
vBox->setSpacing(spacing);
m_proxy = new KCModuleProxy("kcmtrash");
- connect(m_proxy, SIGNAL(changed(bool)), this, SIGNAL(changed()));
topLayout->addWidget(m_proxy);
// Add a dummy widget with no restriction regarding
topLayout->addWidget(vBox);
loadSettings();
+
+ connect(m_proxy, static_cast<void(KCModuleProxy::*)(bool)>(&KCModuleProxy::changed), this, &TrashSettingsPage::changed);
}
TrashSettingsPage::~TrashSettingsPage()