Tiny change in the order of the initializers to eliminate compiler warning.

Dependents:   Smart-WiFly-WebServer

Fork of C12832 by Chris Styles

Revision:
17:e37a0e1a97a1
Parent:
16:7de323fa46fe
--- a/C12832.cpp	Wed Feb 05 14:25:16 2014 +0000
+++ b/C12832.cpp	Mon Feb 02 03:01:55 2015 +0000
@@ -29,7 +29,7 @@
 
 
 C12832::C12832(PinName mosi, PinName sck, PinName reset, PinName a0, PinName ncs, const char* name)
-    : _spi(mosi,NC,sck),_reset(reset),_A0(a0),_CS(ncs),GraphicsDisplay(name)
+    : GraphicsDisplay(name),_spi(mosi,NC,sck),_reset(reset),_A0(a0),_CS(ncs)
 {
     orientation = 1;
     draw_mode = NORMAL;