Commit 160ba82b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Update qtu, qta macros .

parent 2169f3b7
......@@ -65,8 +65,8 @@ struct intf_sys_t
#define qfu( i ) QString::fromUtf8( i )
#define qtr( i ) QString::fromUtf8( _(i) )
#define qtu( i ) i.toUtf8().data()
#define qta( i ) i.toAscii().data()
#define qtu( i ) (i).toUtf8().data()
#define qta( i ) (i).toAscii().data()
#define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
#define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
......
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