diff --git a/src/bin/launcher/launcher.cpp b/src/bin/launcher/launcher.cpp index 8a029a2..e7dfb62 100644 --- a/src/bin/launcher/launcher.cpp +++ b/src/bin/launcher/launcher.cpp @@ -7,10 +7,7 @@ int main(void) { ubixDesktop * desktop = new ubixDesktop(NULL); - if (desktop!=NULL) cout << "Desktop created" << endl; ubixButton * daButton = new ubixButton(desktop); - if (daButton != NULL) cout << "da uBix button was created" << endl; - cout << "daButton->vCreate() returned: " << daButton->vCreate() << endl; delete daButton; delete desktop; diff --git a/src/lib/views/sunlight/sTypes.cpp b/src/lib/views/sunlight/sTypes.cpp index 174384d..f14338a 100644 --- a/src/lib/views/sunlight/sTypes.cpp +++ b/src/lib/views/sunlight/sTypes.cpp @@ -28,7 +28,6 @@ } // sRGBA8Color::sRGBAColor sSize::sSize(uInt32 w, uInt32 h) { - cout << "sSize::sSize(uInt32, uInt32);" << endl; size = 0; width = w; height = h; @@ -36,7 +35,6 @@ } // sSize::sSize sSize::sSize(uInt32 s, uInt32 w, uInt32 h) { - cout << "sSize::sSize(uInt32, uInt32, uInt32);" << endl; size = s; width = w; height = h; @@ -44,7 +42,6 @@ } // sSize::sSize sSize::~sSize(void) { - cout << "sSize::~sSize()" << endl; return; }