diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:20:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:20:44 +0900 |
commit | 3ff3ecabf4e17546d63b0a18d6024be0fd01599f (patch) | |
tree | 4b094e5a13c567af19fbbe03c9beda5cd67ba747 /src/qt_main.c | |
parent | d0d226cfecc86d833e63005b46bd67ffb7ef8fb1 (diff) | |
download | gtk-qt-engine-3ff3ecabf4e17546d63b0a18d6024be0fd01599f.tar.gz gtk-qt-engine-3ff3ecabf4e17546d63b0a18d6024be0fd01599f.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/qt_main.c')
-rw-r--r-- | src/qt_main.c | 12 |
1 files changed, 6 insertions, 6 deletions
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; |