]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/spinbutt.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / spinbutt.cpp
diff --git a/src/palmos/spinbutt.cpp b/src/palmos/spinbutt.cpp
deleted file mode 100644 (file)
index 9b2425d..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        src/palmos/spinbutt.cpp
-// Purpose:     wxSpinButton
-// Author:      William Osborne - minimal working wxPalmOS port
-// Modified by:
-// Created:     10/13/04
-// RCS-ID:      $Id$
-// Copyright:   (c) William Osborne
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
-#if wxUSE_SPINBTN
-
-#include "wx/spinbutt.h"
-
-#ifndef WX_PRECOMP
-    #include "wx/app.h"
-#endif
-
-// ============================================================================
-// implementation
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// wxWin macros
-// ----------------------------------------------------------------------------
-
-// ----------------------------------------------------------------------------
-// wxSpinButton
-// ----------------------------------------------------------------------------
-
-bool wxSpinButton::Create(wxWindow *parent,
-                          wxWindowID id,
-                          const wxPoint& pos,
-                          const wxSize& size,
-                          long style,
-                          const wxString& name)
-{
-    return false;
-}
-
-wxSpinButton::~wxSpinButton()
-{
-}
-
-// ----------------------------------------------------------------------------
-// size calculation
-// ----------------------------------------------------------------------------
-
-wxSize wxSpinButton::DoGetBestSize() const
-{
-    return wxSize(0,0),
-}
-
-// ----------------------------------------------------------------------------
-// Attributes
-// ----------------------------------------------------------------------------
-
-int wxSpinButton::GetValue() const
-{
-    return 0;
-}
-
-void wxSpinButton::SetValue(int val)
-{
-}
-
-void wxSpinButton::SetRange(int minVal, int maxVal)
-{
-}
-
-#endif
-    // wxUSE_SPINBTN