// Created: 28.06.99
// Version: $Id$
// Copyright: (c) 1999 Vadim Zeitlin
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
wxCoord length,
long style = wxLI_HORIZONTAL)
{
- Create(parent, -1, pos,
- style & wxLI_VERTICAL ? wxSize(-1, length)
- : wxSize(length, -1),
+ Create(parent, wxID_ANY, pos,
+ style & wxLI_VERTICAL ? wxSize(wxDefaultCoord, length)
+ : wxSize(length, wxDefaultCoord),
style);
}