mirror of https://github.com/GNOME/gimp.git
gimprc.in app/gimprc.[ch] new gimprc variable "help-browser" which can be
1999-12-19 Michael Natterer <mitch@gimp.org> * gimprc.in * app/gimprc.[ch] * app/preferences_dialog.c: new gimprc variable "help-browser" which can be either "gimp", or "netscape". * app/gimphelp.[ch]: depending on the value of help_browser, show the help page with the webbrowser plugin.
This commit is contained in:
parent
cf53fddc16
commit
d19382f0f7
|
@ -21,6 +21,12 @@
|
|||
#ifndef __GIMP_HELP_H__
|
||||
#define __GIMP_HELP_H__
|
||||
|
||||
enum
|
||||
{
|
||||
HELP_BROWSER_GIMP,
|
||||
HELP_BROWSER_NETSCAPE
|
||||
};
|
||||
|
||||
typedef void (* GimpHelpFunc) (gchar *);
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,12 @@
|
|||
#ifndef __GIMP_HELP_H__
|
||||
#define __GIMP_HELP_H__
|
||||
|
||||
enum
|
||||
{
|
||||
HELP_BROWSER_GIMP,
|
||||
HELP_BROWSER_NETSCAPE
|
||||
};
|
||||
|
||||
typedef void (* GimpHelpFunc) (gchar *);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue