]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/statline.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / statline.cpp
diff --git a/src/palmos/statline.cpp b/src/palmos/statline.cpp
deleted file mode 100644 (file)
index dce02bf..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        src/palmos/statline.cpp
-// Purpose:     wxStaticLine class
-// 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_STATLINE
-
-#include "wx/statline.h"
-
-#ifndef WX_PRECOMP
-    #include "wx/log.h"
-#endif
-
-#include "wx/palmos/private.h"
-
-#ifndef SS_SUNKEN
-    #define SS_SUNKEN 0x00001000L
-#endif
-
-#ifndef SS_NOTIFY
-    #define SS_NOTIFY 0x00000100L
-#endif
-
-// ============================================================================
-// implementation
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// wxStaticLine
-// ----------------------------------------------------------------------------
-
-bool wxStaticLine::Create(wxWindow *parent,
-                          wxWindowID id,
-                          const wxPoint& pos,
-                          const wxSize& sizeOrig,
-                          long style,
-                          const wxString &name)
-{
-    return false;
-}
-
-WXDWORD wxStaticLine::MSWGetStyle(long style, WXDWORD *exstyle) const
-{
-    return 0;
-}
-
-#endif // wxUSE_STATLINE