summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-11-01 17:09:15 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-11-01 17:09:15 -0700
commite4bfb6597279ca3d9aa3678a617f5f0aef298278 (patch)
tree6262f40ce2aca37fc8b7aa63905d3c190be173cb /dive.h
parent43601f654675c8734c9ca5850cc41dac16d1989a (diff)
downloadsubsurface-e4bfb6597279ca3d9aa3678a617f5f0aef298278.tar.gz
Fix 'init_ui()' so that it can change argc/argv
That's what gtk_init() does with gtk-specific arguments. IOW, if you do things like subsurface --g-fatal-warnings dives.xml to get a real abort on gtk warnings, gtk_init needs to be able to actually change argc/argv. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index 58b6611f8..eda8d6b34 100644
--- a/dive.h
+++ b/dive.h
@@ -257,7 +257,7 @@ extern void add_event(struct dive *dive, int time, int type, int flags, int valu
/* UI related protopypes */
-extern void init_ui(int argc, char **argv);
+extern void init_ui(int *argcp, char ***argvp);
extern void run_ui(void);