Skip to content

Commit

Permalink
Change to use new schema in the qgis_help.db database
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5621 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Jul 21, 2006
1 parent 768b8ad commit 4117a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpviewer/qgshelpviewer.cpp
Expand Up @@ -72,7 +72,7 @@ void QgsHelpViewer::loadContext(const QString &contextId)
sqlite3_stmt *ppStmt;
const char *pzTail;
// build the sql statement
QString sql = "select content,title from tbl_help where context_id = "
QString sql = "select content,title from context_helps where context_id = "
+ contextId;
rc = sqlite3_prepare(db, (const char *)sql, sql.length(), &ppStmt, &pzTail);
if(rc == SQLITE_OK)
Expand Down

0 comments on commit 4117a11

Please sign in to comment.