[QGIS Commit] r8975 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sat Aug 2 01:47:38 EDT 2008


Author: timlinux
Date: 2008-08-02 01:47:37 -0400 (Sat, 02 Aug 2008)
New Revision: 8975

Modified:
   trunk/qgis/src/app/qgsrasterlayerproperties.cpp
Log:
Added better message for cases where gdal format does not allow building pyramids

Modified: trunk/qgis/src/app/qgsrasterlayerproperties.cpp
===================================================================
--- trunk/qgis/src/app/qgsrasterlayerproperties.cpp	2008-08-02 05:34:30 UTC (rev 8974)
+++ trunk/qgis/src/app/qgsrasterlayerproperties.cpp	2008-08-02 05:47:37 UTC (rev 8975)
@@ -1608,7 +1608,8 @@
     else if (res == "ERROR_WRITE_FORMAT")
     {
       QMessageBox::warning(this, tr("Building pyramids failed."),
-          tr("The file was not writeable. Some formats can not be written to, only read. You can also try to check the permissions and then try again.") );
+          tr("The file was not writeable. Some formats do not "
+            "support pyramid overviews. Consult the GDAL documentation if in doubt.") );
     }
     else if (res == "FAILED_NOT_SUPPORTED")
     {



More information about the QGIS-commit mailing list