1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

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
parent 340e1f4b28
commit f05cca7a9a

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 {