Skip to content

Commit

Permalink
More verbose message in pg source select
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Mar 23, 2013
1 parent 2a9d016 commit d6ad6e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/postgres/qgspgsourceselect.cpp
Expand Up @@ -507,7 +507,7 @@ void QgsPgSourceSelect::on_btnConnect_clicked()
// Let user know we couldn't initialise the Postgres/PostGIS provider
QMessageBox::warning( this,
tr( "Postgres/PostGIS Provider" ),
tr( "Could not open the Postgres/PostGIS Provider" ) );
tr( "Could not open the Postgres/PostGIS Provider.\nCheck message log for possible errors." ) );
}
}

Expand All @@ -529,7 +529,7 @@ void QgsPgSourceSelect::finishList()
if ( mTablesTreeView->model()->rowCount() == 0 )
QMessageBox::information( this,
tr( "Postgres/PostGIS Provider" ),
tr( "No accessible tables or views found. Check the message log for possible errors." ) );
tr( "No accessible tables or views found.\nCheck the message log for possible errors." ) );

}

Expand Down

0 comments on commit d6ad6e5

Please sign in to comment.