summaryrefslogtreecommitdiffstats
path: root/krename/pluginloader.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 00:55:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 00:55:35 -0600
commit59d3d7e9bd4f6b8c652aa2bc7bb4d92e4114c6c6 (patch)
treea21ce012c4367458b1d8512f3128964e14f6d44c /krename/pluginloader.cpp
parent201c908ba1ab2f4ebc53258d7841a0d1c60c6819 (diff)
downloadkrename-59d3d7e9bd4f6b8c652aa2bc7bb4d92e4114c6c6.tar.gz
krename-59d3d7e9bd4f6b8c652aa2bc7bb4d92e4114c6c6.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'krename/pluginloader.cpp')
-rw-r--r--krename/pluginloader.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/krename/pluginloader.cpp b/krename/pluginloader.cpp
index af2d411..c5c6f22 100644
--- a/krename/pluginloader.cpp
+++ b/krename/pluginloader.cpp
@@ -166,12 +166,12 @@ void PluginLoader::loadFilePlugins()
for( unsigned int i = 0; i < list.count(); i++ ) {
KService* s = (KService*)list[i];
if( !s->terminal() && s->type() == "Service" && s->hasServiceType( "KFilePlugin" ) ) {
- FilePlugin* kfileplugin = new FilePlugin( s );
- if( kfileplugin->isValid() ) {
- addPlugin( kfileplugin );
+ FilePlugin* tdefileplugin = new FilePlugin( s );
+ if( tdefileplugin->isValid() ) {
+ addPlugin( tdefileplugin );
kapp->processEvents();
} else
- delete kfileplugin;
+ delete tdefileplugin;
}
}