It seems that VC++ has a beef with this statement
void Errors::DisplayX() {
        try{
        dialog->error_bell();
        dialog->set_message(this->what());
        dialog->set_secondary_text(where());
        dialog->run();
        dialog->hide();
        }catch(Glib::Exception& e){
                std::cout << e.what() << std::endl;
        } 
}
saying that:
The Glib::Exception::what() says: "Conversion from charter set 'WCHAR_T' to
'UTF-8' is not supported".

I tried this code with GCC; no... problem! For compatibility purposes, I
would like to have this resolved, any suggestions?


This e-mail is for the sole use of the intended recipient and may contain
confidential or privileged information. Unauthorized use of its contents is
prohibited. If you have received this e-mail in error, please notify sender
immediately via return e-mail and then delete the original e-mail.


_______________________________________________
gtkmm-list mailing list
[email protected]
https://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to