> Hi, > > i have an application (VirusCollectionTools) and the output in console > gave this. > > (VirusCollectionTools-source:6343): Pango-WARNING **: Invalid UTF-8 > string passed to pango_layout_set_text() > > what is this? >
An invalid UTF-8 string has been set to a GTK+ function. To know where exactly: $ cd /path/to/my/project $ gbc3 -agt $ gdb gbx3 ... $ break g_log ... answer 'y' to the question $ run ... until the program breaks just before displaying the previous warning message $ finish ... to check that the Pango warning is actually displayed. $ p DEBUG_where() ... to see the current Gambas code line. Regards, -- Benoît Minisini ------------------------------------------------------------------------------ The Next 800 Companies to Lead America's Growth: New Video Whitepaper David G. Thomson, author of the best-selling book "Blueprint to a Billion" shares his insights and actions to help propel your business during the next growth cycle. Listen Now! http://p.sf.net/sfu/SAP-dev2dev _______________________________________________ Gambas-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/gambas-user
