summaryrefslogtreecommitdiffstats
path: root/src/qt_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt_main.c')
-rw-r--r--src/qt_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt_main.c b/src/qt_main.c
index 4e9eb1b..fab6003 100644
--- a/src/qt_main.c
+++ b/src/qt_main.c
@@ -11,19 +11,19 @@ G_MODULE_EXPORT GtkRcStyle * theme_create_rc_style (void);
G_MODULE_EXPORT void theme_init (GTypeModule *module)
{
- createQApp();
+ createTQApp();
qtengine_rc_style_register_type (module);
qtengine_style_register_type (module);
}
G_MODULE_EXPORT void theme_exit (void)
{
- destroyQApp();
+ destroyTQApp();
}
G_MODULE_EXPORT GtkRcStyle * theme_create_rc_style (void)
{
- void *ptr = GTK_RC_STYLE (g_object_new (QTENGINE_TYPE_RC_STYLE, NULL));
+ void *ptr = GTK_RC_STYLE (g_object_new (TQTENGINE_TYPE_RC_STYLE, NULL));
return (GtkRcStyle *)ptr;
}