Split this out from other changes to keep things sane..
wxDeprecated KeyCode. wxDeprecated old wxList compat methods. Replaced a large number of them in the gtk build already, but there are still plenty more so feel free to help nuke them as you find them. s/^I/ / and s/TRUE/true/ etc. a couple of these too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -192,46 +192,46 @@ wxPrintPaperType *wxPrintPaperDatabase::FindPaperType(const wxString& name)
|
||||
{
|
||||
wxNode *node = Find(name);
|
||||
if (node)
|
||||
return (wxPrintPaperType *)node->Data();
|
||||
return (wxPrintPaperType *)node->GetData();
|
||||
else
|
||||
return (wxPrintPaperType *) NULL;
|
||||
}
|
||||
|
||||
wxPrintPaperType *wxPrintPaperDatabase::FindPaperType(wxPaperSize id)
|
||||
{
|
||||
wxNode *node = First();
|
||||
wxNode *node = GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->Data();
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->GetData();
|
||||
if (paperType->GetId() == id)
|
||||
return paperType;
|
||||
node = node->Next();
|
||||
node = node->GetNext();
|
||||
}
|
||||
return (wxPrintPaperType *) NULL;
|
||||
}
|
||||
|
||||
wxPrintPaperType *wxPrintPaperDatabase::FindPaperTypeByPlatformId(int id)
|
||||
{
|
||||
wxNode *node = First();
|
||||
wxNode *node = GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->Data();
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->GetData();
|
||||
if (paperType->GetPlatformId() == id)
|
||||
return paperType;
|
||||
node = node->Next();
|
||||
node = node->GetNext();
|
||||
}
|
||||
return (wxPrintPaperType *) NULL;
|
||||
}
|
||||
|
||||
wxPrintPaperType *wxPrintPaperDatabase::FindPaperType(const wxSize& sz)
|
||||
{
|
||||
wxNode *node = First();
|
||||
wxNode *node = GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->Data();
|
||||
wxPrintPaperType* paperType = (wxPrintPaperType*) node->GetData();
|
||||
if (paperType->GetSize() == sz)
|
||||
return paperType;
|
||||
node = node->Next();
|
||||
node = node->GetNext();
|
||||
}
|
||||
return (wxPrintPaperType *) NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user