LCD LIB

Dependents:   HagridOS5

Fork of RA8875 by David Smart

Files at this revision

API Documentation at this revision

Comitter:
WiredHome
Date:
Mon Feb 08 01:47:56 2016 +0000
Parent:
103:7e0464ca6c5c
Child:
105:4f116006ba1f
Commit message:
comment out destructors - until I figure out the warning.

Changed in this revision

GraphicsDisplay.cpp Show annotated file Show diff for this revision Revisions of this file
GraphicsDisplay.h Show annotated file Show diff for this revision Revisions of this file
TextDisplay.cpp Show annotated file Show diff for this revision Revisions of this file
TextDisplay.h Show annotated file Show diff for this revision Revisions of this file
--- a/GraphicsDisplay.cpp	Sun Feb 07 23:18:01 2016 +0000
+++ b/GraphicsDisplay.cpp	Mon Feb 08 01:47:56 2016 +0000
@@ -85,6 +85,10 @@
     font = NULL;
 }
 
+//GraphicsDisplay::~GraphicsDisplay()
+//{
+//}
+
 RetCode_t GraphicsDisplay::SelectUserFont(const unsigned char * _font)
 {
     font = _font;     // trusting them, but it might be good to put some checks in here...
--- a/GraphicsDisplay.h	Sun Feb 07 23:18:01 2016 +0000
+++ b/GraphicsDisplay.h	Mon Feb 08 01:47:56 2016 +0000
@@ -30,6 +30,8 @@
     /// The constructor
     GraphicsDisplay(const char* name);
     
+    //~GraphicsDisplay();
+    
     /// Draw a pixel in the specified color.
     ///
     /// @note this method must be supported in the derived class.
--- a/TextDisplay.cpp	Sun Feb 07 23:18:01 2016 +0000
+++ b/TextDisplay.cpp	Mon Feb 08 01:47:56 2016 +0000
@@ -31,10 +31,10 @@
     }
 }
 
-TextDisplay::~TextDisplay()
-{
-    delete _path;
-}
+//TextDisplay::~TextDisplay()
+//{
+//    delete [] _path;
+//}
 
 int TextDisplay::_putc(int value)
 {
--- a/TextDisplay.h	Sun Feb 07 23:18:01 2016 +0000
+++ b/TextDisplay.h	Mon Feb 08 01:47:56 2016 +0000
@@ -37,7 +37,7 @@
 
     /// destructor to clean up
     ///
-    ~TextDisplay();
+    //~TextDisplay();
 
     /// output a character at the given position
     ///