notes/notesui/notesappcontroller/src/notesappcontroller.cpp
changeset 23 fd30d51f876b
parent 18 c198609911f9
child 45 b6db4fd4947b
--- a/notes/notesui/notesappcontroller/src/notesappcontroller.cpp	Fri Apr 16 14:57:40 2010 +0300
+++ b/notes/notesui/notesappcontroller/src/notesappcontroller.cpp	Mon May 03 12:30:32 2010 +0300
@@ -15,9 +15,6 @@
 *
 */
 
-// System includes
-#include <QDebug>
-
 // User includes
 #include "notesappcontroller.h"
 #include "notesappcontrollerifimpl.h"
@@ -40,8 +37,6 @@
  mNotesModelHandler(0),
  mIfImpl(0)
 {
-	qDebug() << "notes: NotesAppController::NoteAppController -->";
-
 	// Construct the interface implementation.
 	mIfImpl = new NotesAppControllerIfImpl(this, this);
 
@@ -56,8 +51,6 @@
 	Q_ASSERT_X(
 			mViewManager, "notesappcontroller.cpp",
 			"NotesViewManager is 0");
-
-	qDebug() << "notes: NotesAppController::NoteAppController <--";
 }
 
 /*!
@@ -65,8 +58,6 @@
  */
 NotesAppController::~NotesAppController()
 {
-	qDebug() << "notes: NotesAppController::~NoteAppController -->";
-
 	if (mViewManager) {
 		delete mViewManager;
 		mViewManager = 0;
@@ -79,8 +70,6 @@
 		delete mIfImpl;
 		mIfImpl = 0;
 	}
-
-	qDebug() << "notes: NotesAppController::~NoteAppController <--";
 }
 
 // End of file	--Don't remove this.