Remove some debug messages. Change some error messages..

Remove some useless debug messages, e.g. because they just print an SQL
string which you can see in the SQL log window anyway.

Change some "critical" errors messages to just warning. No sense in
printing a critical error message when the program can handle the
problem by itself.
This commit is contained in:
Martin Kleusberg
2013-05-08 22:03:04 +02:00
parent cf72bfbb1c
commit 5b9d5cc40b
5 changed files with 20 additions and 34 deletions

View File

@@ -7,8 +7,6 @@
#include "sqlitedb.h"
#include <QDebug>
EditTableDialog::EditTableDialog(DBBrowserDB* db, const QString& tableName, QWidget* parent)
: QDialog(parent),
ui(new Ui::EditTableDialog),
@@ -30,7 +28,6 @@ EditTableDialog::EditTableDialog(DBBrowserDB* db, const QString& tableName, QWid
// Existing table, so load and set the current layout
QString sTablesql = pdb->getTableSQL(curTable);
//qDebug() << sTablesql;
m_table = sqlb::Table::parseSQL(sTablesql);
populateFields();
}