Minor cleanup and doc string in gnc-help-utils.[ch].

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15792 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2007-04-04 15:41:48 +00:00
parent 8c332ae13b
commit b2bd1a6411
2 changed files with 10 additions and 10 deletions

View File

@ -35,7 +35,7 @@
static GHashTable * static GHashTable *
parse_hhmap_file(const gchar *chmfile) parse_hhmap_file(const gchar *chmfile)
{ {
gchar *mapfile = NULL, *dot; gchar *mapfile = NULL, *dot;
GKeyFile *keyfile = NULL; GKeyFile *keyfile = NULL;
GError *error = NULL; GError *error = NULL;
gchar **keys = NULL, **key; gchar **keys = NULL, **key;

View File

@ -23,14 +23,14 @@
#ifndef __GNC_HELP_UTILS_H__ #ifndef __GNC_HELP_UTILS_H__
#define __GNC_HELP_UTILS_H__ #define __GNC_HELP_UTILS_H__
#include "config.h" /** Launch HTML Help Viewer and open a given CHM file. Use HtmlHelpW
#include <glibconfig.h> * if available, or fallback to spawning hh.exe. Possibly scroll to a
* given anchor within the document.
#ifdef G_OS_WIN32 *
* @param chmfile The name of CHM help file to be opened.
void *
gnc_show_htmlhelp(const gchar *chmfile, const gchar *anchor); * @param anchor The anchor the help browser should scroll to.
*/
#endif /* G_OS_WIN32 */ void gnc_show_htmlhelp(const gchar *chmfile, const gchar *anchor);
#endif /* __GNC_HELP_UTILS_H__ */ #endif /* __GNC_HELP_UTILS_H__ */