Skip to content

Commit

Permalink
Merge pull request #477 from matthias-kuhn/pg-msg
Browse files Browse the repository at this point in the history
Small string change: More verbose message in pg source select
  • Loading branch information
mach0 committed Mar 23, 2013
2 parents 2a9d016 + d6ad6e5 commit e988b35
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 e988b35

Please sign in to comment.