diff options
author | Michele Calgaro <[email protected]> | 2024-05-01 21:32:16 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-02 21:11:19 +0900 |
commit | 62949e0a61c1340c38a696a7652fde623c36b0ae (patch) | |
tree | 9a6ef1b5a2cb7910f984368933eda680133fef95 /tdefx | |
parent | bef9baf7ee87538c596dd04c8d379b1814bb94e8 (diff) | |
download | tdelibs-62949e0a61c1340c38a696a7652fde623c36b0ae.tar.gz tdelibs-62949e0a61c1340c38a696a7652fde623c36b0ae.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit bba3128085abe1a32cca43d9fb8ac02c2a29bf6b)
Diffstat (limited to 'tdefx')
-rw-r--r-- | tdefx/kcpuinfo.cpp | 6 | ||||
-rw-r--r-- | tdefx/tdestyle.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tdefx/kcpuinfo.cpp b/tdefx/kcpuinfo.cpp index 97c99f8d9..ff6d3505c 100644 --- a/tdefx/kcpuinfo.cpp +++ b/tdefx/kcpuinfo.cpp @@ -48,10 +48,10 @@ static void sighandler( int ) #endif #ifdef __PPC__ -static sigjmp_buf KDE_NO_EXPORT jmpbuf; -static sig_atomic_t KDE_NO_EXPORT canjump = 0; +static sigjmp_buf TDE_NO_EXPORT jmpbuf; +static sig_atomic_t TDE_NO_EXPORT canjump = 0; -static void KDE_NO_EXPORT sigill_handler( int sig ) +static void TDE_NO_EXPORT sigill_handler( int sig ) { if ( !canjump ) { signal( sig, SIG_DFL ); diff --git a/tdefx/tdestyle.cpp b/tdefx/tdestyle.cpp index 2c741fc06..6571c2a48 100644 --- a/tdefx/tdestyle.cpp +++ b/tdefx/tdestyle.cpp @@ -2383,7 +2383,7 @@ void TDEStyle::virtual_hook( int, void* ) // HACK for gtk-qt-engine -extern "C" KDE_EXPORT +extern "C" TDE_EXPORT void kde_tdestyle_set_scrollbar_type_windows( void* style ) { ((TDEStyle*)style)->setScrollBarType( TDEStyle::WindowsStyleScrollBar ); |