Skip to content

Commit

Permalink
Split the text in an error dialog box over two lines instead of one.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@4758 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jan 27, 2006
1 parent 4e4415f commit a1e979e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/geoprocessing/qgspggeoprocessing.cpp
Expand Up @@ -357,9 +357,9 @@ void QgsPgGeoprocessing::buffer()
}
} else {
QMessageBox::critical(0, tr("Not a PostgreSQL/PosGIS Layer"),
QString("%1").arg(lyr->name()) +
tr(" is not a PostgreSQL/PosGIS layer. Geoprocessing functions "
"are only available for PostgreSQL/PosGIS Layers"));
QString("%1").arg(lyr->name()) +
tr(" is not a PostgreSQL/PosGIS layer.\n") +
tr("Geoprocessing functions are only available for PostgreSQL/PosGIS Layers"));
}
} else {
QMessageBox::warning(0, tr("No Active Layer"),
Expand Down

0 comments on commit a1e979e

Please sign in to comment.