summaryrefslogtreecommitdiff
path: root/x11/kdelibs4/files/patch-kparts__componentfactory.h
diff options
context:
space:
mode:
authorMax Brazhnikov <makc@FreeBSD.org>2013-02-03 20:10:37 +0000
committerMax Brazhnikov <makc@FreeBSD.org>2013-02-03 20:10:37 +0000
commitcb8b1428c6bb9ed135f61a9cecbe8397defbf329 (patch)
tree0a68a09c88303888985b47f7045bed36788aefc2 /x11/kdelibs4/files/patch-kparts__componentfactory.h
parentUpdate to 1.0.7 (diff)
KDE/FreeBSD team presents KDE SC 4.9.5 ports!
- kdebindings ports have been renamed to match upstream. - kdemultimedia and kdenetwork have been split. - New port games/pairs added. - Trim Makefile header - Convert to new option framework - New USE_KDE4 components: libkcddb, libkcompactdisc - Update: databases/akonadi to 1.9.0 devel/grantlee to 0.3.0 textproc/rasqal to 0.9.30 textproc/redland-bindings to 1.0.16.1 textproc/soprano to 2.9.0 x11-toolkits/attica to 0.4.1 The area51 repository features commits by Schaich Alonso, avilla, dbn, jhale, makc and rakuco. Contributors: - Oleg Sidorkin - Tobias Berner - Kurt Jaeger
Diffstat (limited to 'x11/kdelibs4/files/patch-kparts__componentfactory.h')
-rw-r--r--x11/kdelibs4/files/patch-kparts__componentfactory.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/x11/kdelibs4/files/patch-kparts__componentfactory.h b/x11/kdelibs4/files/patch-kparts__componentfactory.h
deleted file mode 100644
index 4332929cfc69..000000000000
--- a/x11/kdelibs4/files/patch-kparts__componentfactory.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- kparts/componentfactory.h.orig 2012-11-23 16:20:14.000000000 +0800
-+++ kparts/componentfactory.h 2012-11-23 16:20:22.000000000 +0800
-@@ -28,6 +28,8 @@
- #endif
- #include <kmimetypetrader.h>
-
-+#include <QtCore/QFile>
-+
- namespace KParts
- {
- namespace ComponentFactory
-@@ -81,7 +83,7 @@
- const QStringList &args = QStringList(),
- int *error = 0 )
- {
-- KLibrary *library = KLibLoader::self()->library( QString( libraryName ) ); // compatibility hack
-+ KLibrary *library = KLibLoader::self()->library( QFile::decodeName( libraryName ) ); // compatibility hack
- if ( !library )
- {
- if ( error )
-@@ -135,7 +137,7 @@
- return 0;
- }
-
-- return createPartInstanceFromLibrary<T>( library.toLocal8Bit().data(), parentWidget,
-+ return createPartInstanceFromLibrary<T>( QFile::encodeName( library ).constData(), parentWidget,
- parent, args, error );
- }
- #endif