From 3ff3ecabf4e17546d63b0a18d6024be0fd01599f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 3 May 2024 12:20:44 +0900 Subject: Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT Signed-off-by: Michele Calgaro --- src/qt_main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/qt_main.c') diff --git a/src/qt_main.c b/src/qt_main.c index 8b5bf3b..ba8c832 100644 --- a/src/qt_main.c +++ b/src/qt_main.c @@ -10,23 +10,23 @@ #include "qt_qt_wrapper.h" -KDE_EXPORT void theme_init (GTypeModule *module); -KDE_EXPORT void theme_exit (void); -KDE_EXPORT GtkRcStyle * theme_create_rc_style (void); +TDE_EXPORT void theme_init (GTypeModule *module); +TDE_EXPORT void theme_exit (void); +TDE_EXPORT GtkRcStyle * theme_create_rc_style (void); -KDE_EXPORT void theme_init (GTypeModule *module) +TDE_EXPORT void theme_init (GTypeModule *module) { createTQApp(); qtengine_rc_style_register_type (module); qtengine_style_register_type (module); } -KDE_EXPORT void theme_exit (void) +TDE_EXPORT void theme_exit (void) { destroyTQApp(); } -KDE_EXPORT GtkRcStyle * theme_create_rc_style (void) +TDE_EXPORT GtkRcStyle * theme_create_rc_style (void) { void *ptr = GTK_RC_STYLE (g_object_new (TQTENGINE_TYPE_RC_STYLE, NULL)); return (GtkRcStyle *)ptr; -- cgit v1.2.3