┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinpart.cpp
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2008-05-04 21:15:14 +0000
committerDavid Faure <[email protected]>2008-05-04 21:15:14 +0000
commit5ad129ac78be046471a172f1e42d716dc0a4485b (patch)
tree54f7090d8e78b783c418a9065c56780130b06194 /src/dolphinpart.cpp
parent5e36288789069a3444b636142671762539a0a56a (diff)
Ooops, fix name of componentdata so that the dolphinpart GUI is found again.
svn path=/trunk/KDE/kdebase/apps/; revision=804036
Diffstat (limited to 'src/dolphinpart.cpp')
-rw-r--r--src/dolphinpart.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp
index be89fcc5a..2277ca1db 100644
--- a/src/dolphinpart.cpp
+++ b/src/dolphinpart.cpp
@@ -43,7 +43,9 @@
#include <QClipboard>
K_PLUGIN_FACTORY(DolphinPartFactory, registerPlugin<DolphinPart>();)
-K_EXPORT_PLUGIN(DolphinPartFactory("dolphin"))
+// The componentdata name must be dolphinpart so that dolphinpart.rc is found
+// Alternatively we would have to install it as dolphin/dolphinpart.rc
+K_EXPORT_PLUGIN(DolphinPartFactory("dolphinpart"))
DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QVariantList& args)
: KParts::ReadOnlyPart(parent)