// Author: Vadim Zeitlin
// Modified by:
// Created: 23.07.99
-// RCS-ID: $Id$
// Copyright: (c) Vadim Zeitlin
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
long min,
long max,
const wxPoint& pos)
- : wxDialog(GetParentForModalDialog(parent),
+ : wxDialog(GetParentForModalDialog(parent, 0),
wxID_ANY, caption,
pos, wxDefaultSize)
{
{
#if !wxUSE_SPINCTRL
wxString tmp = m_spinctrl->GetValue();
- if ( wxSscanf(tmp, _T("%ld"), &m_value) != 1 )
+ if ( wxSscanf(tmp, wxT("%ld"), &m_value) != 1 )
EndModal(wxID_CANCEL);
else
#else