Commit 94336ceb authored by claes's avatar claes

utf8 conversion

parent c62ab440
/* /*
* Proview $Id: rt_xtt_gtk.cpp,v 1.10 2007-05-25 13:36:08 claes Exp $ * Proview $Id: rt_xtt_gtk.cpp,v 1.11 2007-06-29 09:51:20 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -133,7 +133,9 @@ void XttGtk::open_input_dialog( char *text, char *title, ...@@ -133,7 +133,9 @@ void XttGtk::open_input_dialog( char *text, char *title,
void XttGtk::message( char severity, char *msg) void XttGtk::message( char severity, char *msg)
{ {
gtk_label_set_text( GTK_LABEL(msg_label), msg); char *messageutf8 = g_convert( msg, -1, "UTF-8", "ISO8859-1", NULL, NULL, NULL);
gtk_label_set_text( GTK_LABEL(msg_label), messageutf8);
g_free( messageutf8);
} }
void XttGtk::close( void *ctx, int terminate) void XttGtk::close( void *ctx, int terminate)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment