[gimp] Bug 778988 - XCF error: unsupported XCF file version 10 encountered



commit 0874703e3b7f2d211816feccd745404ed8ec3d71
Author: Michael Natterer <mitch gimp org>
Date:   Tue Feb 21 02:11:18 2017 +0100

    Bug 778988 - XCF error: unsupported XCF file version 10 encountered
    
    Oops, should support version 10 when loading XCF...

 app/xcf/xcf.c |   21 +++++++++++----------
 1 files changed, 11 insertions(+), 10 deletions(-)
---
diff --git a/app/xcf/xcf.c b/app/xcf/xcf.c
index 0d81ed6..ec55b79 100644
--- a/app/xcf/xcf.c
+++ b/app/xcf/xcf.c
@@ -67,16 +67,17 @@ static GimpValueArray * xcf_save_invoker (GimpProcedure         *procedure,
 
 static GimpXcfLoaderFunc * const xcf_loaders[] =
 {
-  xcf_load_image,   /* version 0 */
-  xcf_load_image,   /* version 1 */
-  xcf_load_image,   /* version 2 */
-  xcf_load_image,   /* version 3 */
-  xcf_load_image,   /* version 4 */
-  xcf_load_image,   /* version 5 */
-  xcf_load_image,   /* version 6 */
-  xcf_load_image,   /* version 7 */
-  xcf_load_image,   /* version 8 */
-  xcf_load_image    /* version 9 */
+  xcf_load_image,   /* version  0 */
+  xcf_load_image,   /* version  1 */
+  xcf_load_image,   /* version  2 */
+  xcf_load_image,   /* version  3 */
+  xcf_load_image,   /* version  4 */
+  xcf_load_image,   /* version  5 */
+  xcf_load_image,   /* version  6 */
+  xcf_load_image,   /* version  7 */
+  xcf_load_image,   /* version  8 */
+  xcf_load_image,   /* version  9 */
+  xcf_load_image    /* version 10 */
 };
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]