removing overloads to avoid 'hidden method' warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60232 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d07e1e0c13
commit
0698ed3ca8
@ -733,22 +733,6 @@ public :
|
||||
|
||||
public :
|
||||
|
||||
// item aware methods, to be used in subclasses
|
||||
|
||||
virtual Boolean CompareItems(const wxMacDataItem* itemOneID,
|
||||
const wxMacDataItem* itemTwoID,
|
||||
DataBrowserPropertyID sortProperty);
|
||||
|
||||
virtual OSStatus GetSetItemData(wxMacDataItem* itemID,
|
||||
DataBrowserPropertyID property,
|
||||
DataBrowserItemDataRef itemData,
|
||||
Boolean changeValue );
|
||||
|
||||
virtual void ItemNotification(
|
||||
const wxMacDataItem* itemID,
|
||||
DataBrowserItemNotification message,
|
||||
DataBrowserItemDataRef itemData);
|
||||
|
||||
// as we are getting the same events for human and API selection we have to suppress
|
||||
// events in the latter case, since this will be used from many subclasses we keep it here
|
||||
|
||||
@ -913,7 +897,7 @@ public:
|
||||
virtual void UpdateLineToEnd( unsigned int n) ;
|
||||
|
||||
virtual void ItemNotification(
|
||||
const wxMacDataItem* itemID,
|
||||
DataBrowserItemID itemID,
|
||||
DataBrowserItemNotification message,
|
||||
DataBrowserItemDataRef itemData);
|
||||
|
||||
|
@ -345,7 +345,7 @@ wxMacDataBrowserListControl::~wxMacDataBrowserListControl()
|
||||
}
|
||||
|
||||
void wxMacDataBrowserListControl::ItemNotification(
|
||||
const wxMacDataItem* itemID,
|
||||
DataBrowserItemID itemID,
|
||||
DataBrowserItemNotification message,
|
||||
DataBrowserItemDataRef itemData)
|
||||
{
|
||||
|
@ -2682,7 +2682,7 @@ void wxMacDataBrowserListCtrlControl::DrawItem(
|
||||
int imgIndex = -1;
|
||||
|
||||
DataBrowserTableViewColumnIndex listColumn = 0;
|
||||
OSStatus err = GetColumnPosition( property, &listColumn );
|
||||
GetColumnPosition( property, &listColumn );
|
||||
|
||||
wxListCtrl* list = wxDynamicCast( GetWXPeer() , wxListCtrl );
|
||||
wxMacListCtrlItem* lcItem;
|
||||
|
@ -756,13 +756,7 @@ Boolean wxMacDataItemBrowserControl::CompareItems(DataBrowserItemID itemOneID,
|
||||
{
|
||||
wxMacDataItem* itemOne = (wxMacDataItem*) itemOneID;
|
||||
wxMacDataItem* itemTwo = (wxMacDataItem*) itemTwoID;
|
||||
return CompareItems( itemOne , itemTwo , sortProperty );
|
||||
}
|
||||
|
||||
Boolean wxMacDataItemBrowserControl::CompareItems(const wxMacDataItem* itemOne,
|
||||
const wxMacDataItem* itemTwo,
|
||||
DataBrowserPropertyID sortProperty)
|
||||
{
|
||||
Boolean retval = false;
|
||||
if ( itemOne != NULL )
|
||||
retval = itemOne->IsLessThan( this , itemTwo , sortProperty);
|
||||
@ -776,15 +770,6 @@ OSStatus wxMacDataItemBrowserControl::GetSetItemData(
|
||||
Boolean changeValue )
|
||||
{
|
||||
wxMacDataItem* item = (wxMacDataItem*) itemID;
|
||||
return GetSetItemData(item, property, itemData , changeValue );
|
||||
}
|
||||
|
||||
OSStatus wxMacDataItemBrowserControl::GetSetItemData(
|
||||
wxMacDataItem* item,
|
||||
DataBrowserPropertyID property,
|
||||
DataBrowserItemDataRef itemData,
|
||||
Boolean changeValue )
|
||||
{
|
||||
OSStatus err = errDataBrowserPropertyNotSupported;
|
||||
switch( property )
|
||||
{
|
||||
@ -810,14 +795,6 @@ void wxMacDataItemBrowserControl::ItemNotification(
|
||||
DataBrowserItemDataRef itemData)
|
||||
{
|
||||
wxMacDataItem* item = (wxMacDataItem*) itemID;
|
||||
ItemNotification( item , message, itemData);
|
||||
}
|
||||
|
||||
void wxMacDataItemBrowserControl::ItemNotification(
|
||||
const wxMacDataItem* item,
|
||||
DataBrowserItemNotification message,
|
||||
DataBrowserItemDataRef itemData)
|
||||
{
|
||||
if (item != NULL)
|
||||
item->Notification( this, message, itemData);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user