diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-13 17:26:05 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-22 13:54:30 +0000 |
| commit | 8f46f437a7726521822d513662f512eb2e54ff34 (patch) | |
| tree | bbaf22399472865c19ac04ec3e925df2cc544ce6 | |
| parent | 25803916cbb2af3e23d6aa491c8b33328b3f01d0 (diff) | |
| download | puzzles-8f46f437a7726521822d513662f512eb2e54ff34.zip puzzles-8f46f437a7726521822d513662f512eb2e54ff34.tar.gz puzzles-8f46f437a7726521822d513662f512eb2e54ff34.tar.bz2 puzzles-8f46f437a7726521822d513662f512eb2e54ff34.tar.xz | |
gtk: Fix a missing "const" qualifier when building with GTK 2
| -rw-r--r-- | gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1832,7 +1832,7 @@ bool message_box(GtkWidget *parent, const char *title, const char *msg, bool centre, int type) { GtkWidget *window, *hbox, *text, *button; - char *titles; + const char *titles; int i, def, cancel; window = gtk_dialog_new(); |