/////////////////////////////////////////////////////////////////////////////
// Name: src/palmos/cursor.cpp
// Purpose: wxCursor class
-// Author: William Osborne
+// Author: William Osborne - minimal working wxPalmOS port
// Modified by:
// Created: 10/13/04
-// RCS-ID: $Id:
+// RCS-ID: $Id$
// Copyright: (c) William Osborne
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// 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"
#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"
- #include "wx/cursor.h"
#include "wx/settings.h"
#include "wx/intl.h"
#endif
bool wxCursor::operator==(const wxCursor& cursor) const
{
- return FALSE;
+ return false;
}
wxGDIImageRefData *wxCursor::CreateData() const
void wxSetCursor(const wxCursor& cursor)
{
}
-
-