projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Define _LINUX_SOURCE_COMPAT for AIX build.
[wxWidgets.git]
/
src
/
palmos
/
cursor.cpp
diff --git
a/src/palmos/cursor.cpp
b/src/palmos/cursor.cpp
index 6061e3903f5a4b86792980411b91664218bcb8c3..0ca38c4933a72f3a1c5755a2a85caab186efd417 100644
(file)
--- a/
src/palmos/cursor.cpp
+++ b/
src/palmos/cursor.cpp
@@
-17,10
+17,6
@@
// headers
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "cursor.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-28,19
+24,19
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
+#include "wx/cursor.h"
+
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/bitmap.h"
#include "wx/icon.h"
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/bitmap.h"
#include "wx/icon.h"
- #include "wx/cursor.h"
#include "wx/settings.h"
#include "wx/intl.h"
#include "wx/settings.h"
#include "wx/intl.h"
+ #include "wx/image.h"
+ #include "wx/module.h"
#endif
#endif
-#include "wx/module.h"
-#include "wx/image.h"
-
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
@@
-84,23
+80,15
@@
wxCursor::wxCursor(const wxImage& image)
}
#endif
}
#endif
-wxCursor::wxCursor(const char WXUNUSED(bits)[],
- int WXUNUSED(width),
- int WXUNUSED(height),
- int WXUNUSED(hotSpotX), int WXUNUSED(hotSpotY),
- const char WXUNUSED(maskBits)[])
-{
-}
-
wxCursor::wxCursor(const wxString& filename,
wxCursor::wxCursor(const wxString& filename,
-
long
kind,
+
wxBitmapType
kind,
int hotSpotX,
int hotSpotY)
{
}
// Cursors by stock number
int hotSpotX,
int hotSpotY)
{
}
// Cursors by stock number
-
wxCursor::wxCursor(int
idCursor)
+
void wxCursor::InitFromStock(wxStockCursor
idCursor)
{
}
{
}
@@
-112,11
+100,6
@@
wxCursor::~wxCursor()
// other wxCursor functions
// ----------------------------------------------------------------------------
// other wxCursor functions
// ----------------------------------------------------------------------------
-bool wxCursor::operator==(const wxCursor& cursor) const
-{
- return FALSE;
-}
-
wxGDIImageRefData *wxCursor::CreateData() const
{
return NULL;
wxGDIImageRefData *wxCursor::CreateData() const
{
return NULL;
@@
-134,5
+117,3
@@
const wxCursor *wxGetGlobalCursor()
void wxSetCursor(const wxCursor& cursor)
{
}
void wxSetCursor(const wxCursor& cursor)
{
}
-
-