From 99bdaa7752df6c8feb27ca1de60a463433d43be4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 25 Nov 2017 21:55:17 +0000 Subject: [PATCH] gtkapp.c: fix a copy-paste error in stub main(). Apparently I copied that rather too literally from osxlaunch.c, where the text about OS X and 'launcher' made more sense. The stub main in gtkapp.c has nothing to do with launchers and OS X, so I've corrected the wording to say that a completely different thing won't work in completely different circumstances :-) --- unix/gtkapp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/gtkapp.c b/unix/gtkapp.c index b544684e..602dbf8b 100644 --- a/unix/gtkapp.c +++ b/unix/gtkapp.c @@ -135,7 +135,7 @@ const int buildinfo_gtk_relevant = TRUE; * in the source than it is to remove it in the makefile edifice. */ int main(int argc, char **argv) { - fprintf(stderr, "launcher does nothing on non-OSX platforms\n"); + fprintf(stderr, "GtkApplication frontend doesn't work pre-GTK3\n"); return 1; } GtkWidget *make_gtk_toplevel_window(void *frontend) { return NULL; }