summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-10 20:15:14 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-10 20:15:14 +0000
commit33eb1f413a03042b330796780cb29ae74894c9fd (patch)
tree77afefe532b7d40d4950b7c2b2ab73bb597289cd /gtk
parent345cfc4ec8085fb4b14b90e305788a60ffa106e4 (diff)
downloadnetsurf-33eb1f413a03042b330796780cb29ae74894c9fd.tar.gz
netsurf-33eb1f413a03042b330796780cb29ae74894c9fd.tar.bz2
Doxygen warning fixes
Diffstat (limited to 'gtk')
-rw-r--r--gtk/theme.c5
-rw-r--r--gtk/throbber.c9
2 files changed, 9 insertions, 5 deletions
diff --git a/gtk/theme.c b/gtk/theme.c
index d793626ae..809a27823 100644
--- a/gtk/theme.c
+++ b/gtk/theme.c
@@ -383,8 +383,11 @@ void nsgtk_theme_implement(struct nsgtk_scaffolding *g)
}
/**
- * returns default image for buttons / menu items from gtk stock items
+ * get default image for buttons / menu items from gtk stock items.
+ *
* \param tbbutton button reference
+ * \param iconsize The size of icons to select.
+ * \return default images.
*/
static GtkImage *
diff --git a/gtk/throbber.c b/gtk/throbber.c
index 8ab7dd87c..dac79e39d 100644
--- a/gtk/throbber.c
+++ b/gtk/throbber.c
@@ -30,12 +30,13 @@
struct nsgtk_throbber *nsgtk_throbber = NULL;
/**
- * Creates the throbber using a PNG for each frame. The number of frames must
- * be at least two. The first frame is the inactive frame, others are the
- * active frames.
+ * Creates the throbber using a PNG for each frame.
+ *
+ * The number of frames must be at least two. The first frame is the
+ * inactive frame, others are the active frames.
*
* \param frames The number of frames. Must be at least two.
- * \param ... Filenames of PNGs containing frames.
+ * \param frame_files Filenames of PNGs containing frames.
* \return true on success.
*/
bool nsgtk_throbber_initialise_from_png(const int frames, char** frame_files)