summaryrefslogtreecommitdiffstats
path: root/src/kmplayerconfig.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-05-03 12:15:51 +0900
committerMichele Calgaro <[email protected]>2024-05-07 12:22:48 +0900
commitc5d77586845f1afdb3869941ed4612de6be566a0 (patch)
treef0fd879959ef68abe19bc21e9f2e58ed04e9b55a /src/kmplayerconfig.cpp
parent2debdf218d21f3e2efc518481f0aea57a46b6539 (diff)
downloadkmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.tar.gz
kmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 22a46b7525fb4db31bdd603c7a18a9204144ef0f)
Diffstat (limited to 'src/kmplayerconfig.cpp')
-rw-r--r--src/kmplayerconfig.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kmplayerconfig.cpp b/src/kmplayerconfig.cpp
index 20911e5..7467fde 100644
--- a/src/kmplayerconfig.cpp
+++ b/src/kmplayerconfig.cpp
@@ -128,7 +128,7 @@ KDE_NO_CDTOR_EXPORT Settings::~Settings () {
//delete configdialog;
}
-KDE_EXPORT const char * strMPlayerGroup = "MPlayer";
+TDE_EXPORT const char * strMPlayerGroup = "MPlayer";
const char * strGeneralGroup = "General Options";
static const char * strKeepSizeRatio = "Keep Size Ratio";
static const char * strRememberSize = "Remember Size";
@@ -206,7 +206,7 @@ static const char * strAutoPlayAfterRecording = "Auto Play After Recording";
static const char * strAutoPlayAfterTime = "Auto Play After Recording Time";
static const char * strRecordingCopy = "Recording Is Copy";
-KDE_NO_EXPORT void Settings::applyColorSetting (bool only_changed_ones) {
+TDE_NO_EXPORT void Settings::applyColorSetting (bool only_changed_ones) {
View *view = static_cast <View *> (m_player->view ());
if (!view) return;
for (int i = 0; i < int (ColorSetting::last_target); i++)
@@ -265,7 +265,7 @@ View * Settings::defaultView () {
return static_cast <View *> (m_player->view ());
}
-KDE_NO_EXPORT void Settings::readConfig () {
+TDE_NO_EXPORT void Settings::readConfig () {
m_config->setGroup (strGeneralGroup);
no_intro = m_config->readBoolEntry (strNoIntro, false);
urllist = m_config->readListEntry (strURLList, ';');
@@ -355,7 +355,7 @@ KDE_NO_EXPORT void Settings::readConfig () {
emit configChanged ();
}
-KDE_NO_EXPORT bool Settings::createDialog () {
+TDE_NO_EXPORT bool Settings::createDialog () {
if (configdialog) return false;
configdialog = new Preferences (m_player, this);
int id = 0;
@@ -733,7 +733,7 @@ void Settings::okPressed () {
}
}
-KDE_NO_EXPORT void Settings::getHelp () {
+TDE_NO_EXPORT void Settings::getHelp () {
TDEApplication::kApplication()->invokeBrowser ("man:/mplayer");
}