We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30317a6 commit fd39376Copy full SHA for fd39376
src/gui/qgsbookmarks.cpp
@@ -20,6 +20,7 @@
20
#include "qgsapplication.h"
21
#include "qgscontexthelp.h"
22
#include "qgsmapcanvas.h"
23
+#include "qgslogger.h"
24
25
#include <QDir>
26
#include <QFileInfo>
@@ -86,7 +87,7 @@ void QgsBookmarks::initialise()
86
87
{
88
QString name = QString::fromUtf8((const char *)sqlite3_column_text(ppStmt, 1));
89
// sqlite3_bind_parameter_index(ppStmt, "name"));
- std::cout << "Bookmark name: " << name.toLocal8Bit().data() << std::endl;
90
+ QgsDebugMsg("Bookmark name: " + name.toLocal8Bit().data());
91
Q3ListViewItem *lvi = new Q3ListViewItem(lstBookmarks, name);
92
// set the project name
93
lvi->setText(1, QString::fromUtf8((const char *)sqlite3_column_text(ppStmt, 2)));
0 commit comments