]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/palette.cpp
remove the line for image.h, restore a line commented out by mistake
[wxWidgets.git] / src / gtk / palette.cpp
index 5657c4355eff8a8082199ce6f20b520b402c4648..07d99dc13ccf95e5074661024a876bb6f1872d0e 100644 (file)
 class wxPaletteRefData: public wxObjectRefData
 {
   public:
-  
+
     wxPaletteRefData(void);
     ~wxPaletteRefData(void);
-  
+
     GdkColormap  *m_colormap;
 };
 
-wxPaletteRefData::wxPaletteRefData(void)
+wxPaletteRefData::wxPaletteRefData()
 {
   m_colormap = (GdkColormap *) NULL;
 };
 
-wxPaletteRefData::~wxPaletteRefData(void)
+wxPaletteRefData::~wxPaletteRefData()
 {
   if (m_colormap) gdk_colormap_unref( m_colormap );
 };
@@ -45,7 +45,7 @@ wxPaletteRefData::~wxPaletteRefData(void)
 
 IMPLEMENT_DYNAMIC_CLASS(wxPalette,wxGDIObject)
 
-wxPalette::wxPalette(void)
+wxPalette::wxPalette()
 {
 };
 
@@ -60,31 +60,25 @@ wxPalette::wxPalette( const wxPalette& palette )
   Ref( palette );
 };
 
-wxPalette::wxPalette( const wxPalette* palette )
-{
-  UnRef();
-  if (palette) Ref( *palette ); 
-};
-
-wxPalette::~wxPalette(void)
+wxPalette::~wxPalette()
 {
 };
 
 wxPalette& wxPalette::operator = ( const wxPalette& palette )
 {
-  if (*this == palette) return (*this); 
-  Ref( palette ); 
-  return *this; 
+  if (*this == palette) return (*this);
+  Ref( palette );
+  return *this;
 };
 
 bool wxPalette::operator == ( const wxPalette& palette )
 {
-  return m_refData == palette.m_refData; 
+  return m_refData == palette.m_refData;
 };
 
 bool wxPalette::operator != ( const wxPalette& palette )
 {
-  return m_refData != palette.m_refData; 
+  return m_refData != palette.m_refData;
 };
 
 bool wxPalette::Ok(void) const
@@ -94,13 +88,22 @@ bool wxPalette::Ok(void) const
 
 bool wxPalette::Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue)
 {
+  wxFAIL_MSG("not implemented");
+
+  return FALSE;
 };
 
 int wxPalette::GetPixel( const unsigned char red, const unsigned char green, const unsigned char blue ) const
 {
+  wxFAIL_MSG("not implemented");
+
+  return 0;
 };
 
 bool wxPalette::GetRGB( int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const
 {
+  wxFAIL_MSG("not implemented");
+
+  return 0;
 };