All pastes #2121000 Raw Edit

Miscellany

public text v1 · immutable
#2121000 ·published 2012-02-23 09:52 UTC
rendered paste body
/*
 * Smallest program to get the error
 *
 */

#include "wx/wx.h" 

class TestPrintV: public wxApp
{
    virtual bool OnInit();
};

IMPLEMENT_APP(TestPrintV)

bool TestPrintV::OnInit()
{
    //taken from http://www.wxwidgets.org/docs/faqcmn.htm#printfstr
    wxString str;
    str.Printf("My string is %s", wxString("whatever").c_str());
    return false;
}