Files
wxWidgets/src/palmos/statline.cpp
Stefan Csomor 2895324520 merging back XTI branch part 2
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2011-01-04 08:31:53 +00:00

69 lines
1.9 KiB
C++

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