Remove wxStockCursor function that should never have been global.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47582 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2007-07-20 04:08:58 +00:00
parent 69659fd770
commit e2948f175e

View File

@ -259,13 +259,6 @@ static inline NSCursor* NSCursorCreateWithPrivateId(short sIndex)
return theCursor; return theCursor;
} }
// TODO: Remove in trunk.. needed for 2.8
NSCursor* wxGetStockCursor( short sIndex )
{
wxLogDebug("Please do not call wxGetStockCursor.");
return NSCursorCreateWithPrivateId(sIndex);
}
wxCursorRefData::wxCursorRefData() : wxCursorRefData::wxCursorRefData() :
m_width(32), m_height(32), m_hCursor(nil) m_width(32), m_height(32), m_hCursor(nil)
{ {
@ -424,7 +417,7 @@ wxCursor::wxCursor(int stock_cursor_id)
{ {
int privateId; int privateId;
if( (privateId = GetPrivateCursorIdForStockCursor(stock_cursor_id)) >= 0) if( (privateId = GetPrivateCursorIdForStockCursor(stock_cursor_id)) >= 0)
{ // wxGetStockCursor is not a get method but an alloc method. {
M_CURSORDATA->m_hCursor = NSCursorCreateWithPrivateId(privateId); M_CURSORDATA->m_hCursor = NSCursorCreateWithPrivateId(privateId);
} }
} }