summaryrefslogtreecommitdiffstats
path: root/libtdepim/tdefileio.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-05-05 17:48:46 +0900
committerMichele Calgaro <[email protected]>2024-05-06 16:02:34 +0900
commit7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e (patch)
treef63d015ae98a52b2020591c440eeceae38698c4c /libtdepim/tdefileio.cpp
parent62c95d25331f3e2d652e2ae995ff51f7cb1f2bcf (diff)
downloadtdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.tar.gz
tdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit d6705bac5da767ff271b66c0f01ff6ed6352515e)
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 ec798a722..95eb77285 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,