summaryrefslogtreecommitdiffstats
path: root/libtdepim/tdefileio.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 11:17:04 +0900
commitd6705bac5da767ff271b66c0f01ff6ed6352515e (patch)
treea617f12381b078079df41f885e42af386439cea7 /libtdepim/tdefileio.cpp
parent8973dc76ab93ba7acb94478a37f480762a82f19d (diff)
downloadtdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.tar.gz
tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdepim/tdefileio.cpp')
-rw-r--r--libtdepim/tdefileio.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdepim/tdefileio.cpp b/libtdepim/tdefileio.cpp
index ec798a72..95eb7728 100644
--- a/libtdepim/tdefileio.cpp
+++ b/libtdepim/tdefileio.cpp
@@ -33,7 +33,7 @@ static void msgDialog(const TQString &msg)
//-----------------------------------------------------------------------------
-KDE_EXPORT TQCString kFileToString(const TQString &aFileName, bool aEnsureNL, bool aVerbose)
+TDE_EXPORT TQCString kFileToString(const TQString &aFileName, bool aEnsureNL, bool aVerbose)
{
TQCString result;
TQFileInfo info(aFileName);
@@ -173,7 +173,7 @@ TQByteArray kFileToBytes(const TQString &aFileName, bool aVerbose)
#endif
//-----------------------------------------------------------------------------
-KDE_EXPORT bool kBytesToFile(const char* aBuffer, int len,
+TDE_EXPORT bool kBytesToFile(const char* aBuffer, int len,
const TQString &aFileName,
bool aAskIfExists, bool aBackup, bool aVerbose)
{
@@ -253,14 +253,14 @@ KDE_EXPORT bool kBytesToFile(const char* aBuffer, int len,
return TRUE;
}
-KDE_EXPORT bool kCStringToFile(const TQCString& aBuffer, const TQString &aFileName,
+TDE_EXPORT bool kCStringToFile(const TQCString& aBuffer, const TQString &aFileName,
bool aAskIfExists, bool aBackup, bool aVerbose)
{
return kBytesToFile(aBuffer, aBuffer.length(), aFileName, aAskIfExists,
aBackup, aVerbose);
}
-KDE_EXPORT bool kByteArrayToFile(const TQByteArray& aBuffer, const TQString &aFileName,
+TDE_EXPORT bool kByteArrayToFile(const TQByteArray& aBuffer, const TQString &aFileName,
bool aAskIfExists, bool aBackup, bool aVerbose)
{
return kBytesToFile(aBuffer, aBuffer.size(), aFileName, aAskIfExists,