┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels
diff options
context:
space:
mode:
Diffstat (limited to 'src/panels')
-rw-r--r--src/panels/folders/foldersitemlistwidget.cpp2
-rw-r--r--src/panels/folders/folderspanel.cpp2
-rw-r--r--src/panels/folders/treeviewcontextmenu.cpp4
-rw-r--r--src/panels/information/informationpanel.cpp4
-rw-r--r--src/panels/information/informationpanelcontent.cpp2
-rw-r--r--src/panels/information/phononwidget.cpp1
-rw-r--r--src/panels/information/pixmapviewer.cpp2
-rw-r--r--src/panels/panel.cpp2
-rw-r--r--src/panels/places/placespanel.cpp2
-rw-r--r--src/panels/terminal/terminalpanel.cpp2
10 files changed, 21 insertions, 2 deletions
diff --git a/src/panels/folders/foldersitemlistwidget.cpp b/src/panels/folders/foldersitemlistwidget.cpp
index 1a3ba50ef..7fa1323ea 100644
--- a/src/panels/folders/foldersitemlistwidget.cpp
+++ b/src/panels/folders/foldersitemlistwidget.cpp
@@ -19,3 +19,5 @@ QPalette::ColorRole FoldersItemListWidget::normalTextColorRole() const
{
return QPalette::WindowText;
}
+
+#include "moc_foldersitemlistwidget.cpp"
diff --git a/src/panels/folders/folderspanel.cpp b/src/panels/folders/folderspanel.cpp
index f304654cb..af2b1357b 100644
--- a/src/panels/folders/folderspanel.cpp
+++ b/src/panels/folders/folderspanel.cpp
@@ -365,3 +365,5 @@ void FoldersPanel::updateCurrentItem(int index)
m_controller->view()->scrollToItem(index);
}
+
+#include "moc_folderspanel.cpp"
diff --git a/src/panels/folders/treeviewcontextmenu.cpp b/src/panels/folders/treeviewcontextmenu.cpp
index cff8bd029..419d174e9 100644
--- a/src/panels/folders/treeviewcontextmenu.cpp
+++ b/src/panels/folders/treeviewcontextmenu.cpp
@@ -67,7 +67,7 @@ void TreeViewContextMenu::open(const QPoint &pos)
popup->addSeparator();
// insert 'Rename'
- QAction *renameAction = new QAction(i18nc("@action:inmenu", "Rename..."), this);
+ QAction *renameAction = new QAction(i18nc("@action:inmenu", "Rename…"), this);
renameAction->setEnabled(capabilities.supportsMoving());
renameAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-rename")));
connect(renameAction, &QAction::triggered, this, &TreeViewContextMenu::rename);
@@ -222,3 +222,5 @@ void TreeViewContextMenu::setAutoScrolling(bool enable)
{
m_parent->setAutoScrolling(enable);
}
+
+#include "moc_treeviewcontextmenu.cpp"
diff --git a/src/panels/information/informationpanel.cpp b/src/panels/information/informationpanel.cpp
index 5bd9cb296..9d1e5b971 100644
--- a/src/panels/information/informationpanel.cpp
+++ b/src/panels/information/informationpanel.cpp
@@ -165,7 +165,7 @@ void InformationPanel::showContextMenu(const QPoint &pos)
showHoveredAction->setCheckable(true);
showHoveredAction->setChecked(InformationPanelSettings::showHovered());
- QAction *configureAction = popup.addAction(i18nc("@action:inmenu", "Configure..."));
+ QAction *configureAction = popup.addAction(i18nc("@action:inmenu", "Configure…"));
configureAction->setIcon(QIcon::fromTheme(QStringLiteral("configure")));
if (m_inConfigurationMode) {
configureAction->setEnabled(false);
@@ -419,3 +419,5 @@ void InformationPanel::init()
m_initialized = true;
}
+
+#include "moc_informationpanel.cpp"
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp
index d731d4de7..62f25b24b 100644
--- a/src/panels/information/informationpanelcontent.cpp
+++ b/src/panels/information/informationpanelcontent.cpp
@@ -489,3 +489,5 @@ void InformationPanelContent::adjustWidgetSizes(int width)
m_phononWidget->setVideoSize(QSize(maxWidth, maxWidth));
}
}
+
+#include "moc_informationpanelcontent.cpp"
diff --git a/src/panels/information/phononwidget.cpp b/src/panels/information/phononwidget.cpp
index 683eaafdb..3365998f4 100644
--- a/src/panels/information/phononwidget.cpp
+++ b/src/panels/information/phononwidget.cpp
@@ -261,4 +261,5 @@ void PhononWidget::applyVideoSize()
}
}
+#include "moc_phononwidget.cpp"
#include "phononwidget.moc"
diff --git a/src/panels/information/pixmapviewer.cpp b/src/panels/information/pixmapviewer.cpp
index 7eca876c8..11c13e348 100644
--- a/src/panels/information/pixmapviewer.cpp
+++ b/src/panels/information/pixmapviewer.cpp
@@ -174,3 +174,5 @@ bool PixmapViewer::isAnimatedMimeType(const QString &mimeType)
return QMovie::supportedFormats().contains(format);
});
}
+
+#include "moc_pixmapviewer.cpp"
diff --git a/src/panels/panel.cpp b/src/panels/panel.cpp
index 32f293c4c..e13684922 100644
--- a/src/panels/panel.cpp
+++ b/src/panels/panel.cpp
@@ -59,3 +59,5 @@ void Panel::setUrl(const QUrl &url)
void Panel::readSettings()
{
}
+
+#include "moc_panel.cpp"
diff --git a/src/panels/places/placespanel.cpp b/src/panels/places/placespanel.cpp
index 2d508ba65..8b245f0e7 100644
--- a/src/panels/places/placespanel.cpp
+++ b/src/panels/places/placespanel.cpp
@@ -275,3 +275,5 @@ void PlacesPanel::connectDeviceSignals(const QModelIndex &index)
connect(storageAccess, &Solid::StorageAccess::teardownRequested, this, &PlacesPanel::slotTearDownRequestedExternally);
}
+
+#include "moc_placespanel.cpp"
diff --git a/src/panels/terminal/terminalpanel.cpp b/src/panels/terminal/terminalpanel.cpp
index 9e0391c41..06ad89547 100644
--- a/src/panels/terminal/terminalpanel.cpp
+++ b/src/panels/terminal/terminalpanel.cpp
@@ -331,3 +331,5 @@ bool TerminalPanel::terminalHasFocus() const
return hasFocus();
}
+
+#include "moc_terminalpanel.cpp"