From 6a00b4d4ead8efa75c312acaff897d96fe79a6d9 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Mon, 6 Jul 2015 15:45:41 +0200 Subject: [PATCH] Fix trailing comma at end of enumerator list Breaks compilation with gcc. Change-Id: I0e48e37b4e67ae522338b17dfe996f455e0e5027 Reviewed-by: Paul Olav Tvete Reviewed-by: Gunnar Sletta --- src/quick/items/qquickwindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quick/items/qquickwindow.h b/src/quick/items/qquickwindow.h index eb894d2..d5bf9fb 100644 --- a/src/quick/items/qquickwindow.h +++ b/src/quick/items/qquickwindow.h @@ -70,7 +70,7 @@ public: TextureHasMipmaps = 0x0002, TextureOwnsGLTexture = 0x0004, TextureCanUseAtlas = 0x0008, - TextureIsOpaque = 0x0010, + TextureIsOpaque = 0x0010 }; enum RenderStage { -- 2.7.4