Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[qt5] Fix crash on exit
  • Loading branch information
m-kuhn committed Nov 11, 2015
1 parent bb339f7 commit 4f6989e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/qgsbookmarks.cpp
Expand Up @@ -103,6 +103,7 @@ QgsBookmarks::QgsBookmarks( QWidget *parent ) : QDockWidget( parent )

QgsBookmarks::~QgsBookmarks()
{
QSqlDatabase::removeDatabase( "bookmarks" );
saveWindowLocation();
}

Expand Down
1 change: 1 addition & 0 deletions src/core/auth/qgsauthmanager.cpp
Expand Up @@ -2840,6 +2840,7 @@ QgsAuthManager::~QgsAuthManager()
mScheduledDbEraseTimer = 0;
delete mQcaInitializer;
mQcaInitializer = 0;
QSqlDatabase::removeDatabase( "authentication.configs" );
}

bool QgsAuthManager::masterPasswordInput()
Expand Down

0 comments on commit 4f6989e

Please sign in to comment.