summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
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)