///////////////////////////////////////////////////////////////////////////// // 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