+++ /dev/null
-/////////////////////////////////////////////////////////////////////////////
-// 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