Spreadsheet: Declare the extern GML variable as an array, not a pointer

Part of #5906
Fixes #5943
This commit is contained in:
Dawid Wolosowicz 2021-04-03 19:46:30 +02:00 committed by Andreas Kling
commit f05cca7a9a
Notes: sideshowbarker 2024-07-18 20:50:58 +09:00

View file

@ -49,7 +49,7 @@
#include <unistd.h>
// This is defined in ImportDialog.cpp, we can't include it twice, since the generated symbol is exported.
extern const char* select_format_page_gml;
extern const char select_format_page_gml[];
namespace Spreadsheet {