[OPTIONS]
-BMROOT=. ; Assume that bitmaps are where the source is
+BMROOT=d:\wx2\wxWind~1\docs\latex\wx ; Assume that bitmaps are where the source is
TITLE=wxWindows Manual
CONTENTS=Contents
COMPRESS=HIGH
[FILES]
-Wx.rtf
+wx.rtf
[CONFIG]
-CreateButton("Up", "&Up", "JumpId(`Wx.hlp', `Contents')")
+CreateButton("Up", "&Up", "JumpId(`wx.hlp', `Contents')")
BrowseButtons()
[MAP]
public:
// ctor takes the format we support, but it can also be set later with
// SetFormat()
- wxDataObjectSimple(const wxDataFormat& format = wxFormatInvalid)
+ wxDataObjectSimple(const wxDataFormat& format = wxDataFormat(wxDF_INVALID))
: m_format(format)
{
}
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(DnDShapeDialog, wxDialog)
- EVT_BUTTON(Button_Colour, OnColour)
+ EVT_BUTTON(Button_Colour, DnDShapeDialog::OnColour)
END_EVENT_TABLE()
// ============================================================================
{
wxSimpleDataObjectList::Node *node = m_dataObjects.Item( m_preferred );
- wxCHECK_MSG( node, wxFormatInvalid, wxT("no preferred format") );
+ wxCHECK_MSG( node, wxDataFormat((unsigned short) wxDF_INVALID), wxT("no preferred format") );
wxDataObjectSimple* dataObj = node->GetData();