summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/sinks.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:14:24 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:14:24 -0600
commit33be37a9fd375a72b3b08220c5a36860f4195864 (patch)
tree739973e1882267cbe29644b669a0163a1092b1db /kipi-plugins/sync/sinks.cpp
parent14b1eb042ec8a3f40a9f00a48c702ebfcd77d92b (diff)
downloadkipi-plugins-33be37a9fd375a72b3b08220c5a36860f4195864.tar.gz
kipi-plugins-33be37a9fd375a72b3b08220c5a36860f4195864.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kipi-plugins/sync/sinks.cpp')
-rw-r--r--kipi-plugins/sync/sinks.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/sync/sinks.cpp b/kipi-plugins/sync/sinks.cpp
index ea6d9ed..14fa279 100644
--- a/kipi-plugins/sync/sinks.cpp
+++ b/kipi-plugins/sync/sinks.cpp
@@ -25,7 +25,7 @@
#include <klocale.h>
#include <tdeversion.h>
#if KDE_IS_VERSION(3,2,0)
-#include <kwallet.h>
+#include <tdewallet.h>
#endif
#include "sinks.h"
@@ -65,18 +65,18 @@ Sinks::Sinks()
KWallet::Wallet::Synchronous);
if (!mpWallet)
{
- kdWarning() << "Failed to open kwallet" << endl;
+ kdWarning() << "Failed to open tdewallet" << endl;
}
else
{
if (!mpWallet->hasFolder("KIPISyncPlugin"))
{
if (!mpWallet->createFolder("KIPISyncPlugin"))
- kdWarning() << "Failed to create kwallet folder" << endl;
+ kdWarning() << "Failed to create tdewallet folder" << endl;
}
if (!mpWallet->setFolder("KIPISyncPlugin"))
- kdWarning() << "Failed to set kwallet folder" << endl;
+ kdWarning() << "Failed to set tdewallet folder" << endl;
else
p_wallet = mpWallet;
}
@@ -155,13 +155,13 @@ void Sinks::Save()
if (mpWallet->hasFolder("KIPISyncPlugin"))
{
if (!mpWallet->removeFolder("KIPISyncPlugin"))
- kdWarning() << "Failed to clear kwallet folder" << endl;
+ kdWarning() << "Failed to clear tdewallet folder" << endl;
}
if (!mpWallet->createFolder("KIPISyncPlugin"))
- kdWarning() << "Failed to create kwallet folder" << endl;
+ kdWarning() << "Failed to create tdewallet folder" << endl;
if (!mpWallet->setFolder("KIPISyncPlugin"))
- kdWarning() << "Failed to set kwallet folder" << endl;
+ kdWarning() << "Failed to set tdewallet folder" << endl;
else
p_wallet = mpWallet;
}