diff --git a/samples/univ/bricks.bmp b/samples/univ/bricks.bmp new file mode 100644 index 0000000000..62239f7619 Binary files /dev/null and b/samples/univ/bricks.bmp differ diff --git a/src/univ/colschem.cpp b/src/univ/colschem.cpp new file mode 100644 index 0000000000..7fadd934c9 --- /dev/null +++ b/src/univ/colschem.cpp @@ -0,0 +1,42 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: univ/colschem.cpp +// Purpose: (trivial) wxColourScheme implementation +// Author: Vadim Zeitlin +// Modified by: +// Created: 20.08.00 +// RCS-ID: $Id$ +// Copyright: (c) 2000 Vadim Zeitlin +// Licence: wxWindows license +/////////////////////////////////////////////////////////////////////////////// + +// =========================================================================== +// declarations +// =========================================================================== + +// --------------------------------------------------------------------------- +// headers +// --------------------------------------------------------------------------- + +#ifdef __GNUG__ + #pragma implementation "colschem.h" +#endif + +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ + #pragma hdrstop +#endif + +#ifndef WX_PRECOMP +#endif // WX_PRECOMP + +#include "wx/univ/colschem.h" + +// ============================================================================ +// implementation +// ============================================================================ + +wxColourScheme::~wxColourScheme() +{ +}