┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinpart_ext.cpp
diff options
context:
space:
mode:
authorAlexander Lohnau <[email protected]>2020-10-23 19:51:33 +0200
committerElvis Angelaccio <[email protected]>2020-10-23 18:23:06 +0000
commit97415729c34851df75c77a67f27d6299c00bfbc4 (patch)
treeb7a344b54e226aee8db16f6f123a403d8f276aa9 /src/dolphinpart_ext.cpp
parenta24327cd50ef17b953ecb908d260b73460158107 (diff)
Compile with QT_NO_KEYWORDS
Diffstat (limited to 'src/dolphinpart_ext.cpp')
-rw-r--r--src/dolphinpart_ext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinpart_ext.cpp b/src/dolphinpart_ext.cpp
index 164901483..a6d52e583 100644
--- a/src/dolphinpart_ext.cpp
+++ b/src/dolphinpart_ext.cpp
@@ -164,11 +164,11 @@ KParts::ListingNotificationExtension::NotificationEventTypes DolphinPartListingN
void DolphinPartListingNotificationExtension::slotNewItems(const KFileItemList& items)
{
- emit listingEvent(KParts::ListingNotificationExtension::ItemsAdded, items);
+ Q_EMIT listingEvent(KParts::ListingNotificationExtension::ItemsAdded, items);
}
void DolphinPartListingNotificationExtension::slotItemsDeleted(const KFileItemList& items)
{
- emit listingEvent(KParts::ListingNotificationExtension::ItemsDeleted, items);
+ Q_EMIT listingEvent(KParts::ListingNotificationExtension::ItemsDeleted, items);
}