qulogic/libgnt

Merge gtkdoc-conversion
soc.2013.gobjectification.plugins
2014-02-06, Ankit Vani
f70bc3fb9ee6
Merge gtkdoc-conversion
--- a/gnt-skel.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gnt-skel.c Thu Feb 06 20:02:57 2014 +0530
@@ -92,7 +92,7 @@
* GntSkel API
*****************************************************************************/
GType
-gnt_skel_get_gtype(void)
+gnt_skel_get_type(void)
{
static GType type = 0;
--- a/gnt-skel.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gnt-skel.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_SKEL (gnt_skel_get_gtype())
+#define GNT_TYPE_SKEL (gnt_skel_get_type())
#define GNT_SKEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_SKEL, GntSkel))
#define GNT_SKEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_SKEL, GntSkelClass))
#define GNT_IS_SKEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_SKEL))
@@ -63,7 +63,7 @@
G_BEGIN_DECLS
-GType gnt_skel_get_gtype(void);
+GType gnt_skel_get_type(void);
GntWidget * gnt_skel_new();
--- a/gnt.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gnt.h Thu Feb 06 20:02:57 2014 +0530
@@ -72,24 +72,24 @@
/**
* gnt_screen_occupy:
*
- * @internal
- * Use #gnt_widget_show instead.
+ * Internal function -- do not use.
+ * Use gnt_widget_show() instead.
*/
void gnt_screen_occupy(GntWidget *widget);
/**
* gnt_screen_release:
*
- * @internal
- * Use #gnt_widget_hide instead.
+ * Internal function -- do not use.
+ * Use gnt_widget_hide() instead.
*/
void gnt_screen_release(GntWidget *widget);
/**
* gnt_screen_update:
*
- * @internal
- * Use #gnt_widget_draw instead.
+ * Internal function -- do not use.
+ * Use gnt_widget_draw() instead.
*/
void gnt_screen_update(GntWidget *widget);
--- a/gntbindable.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbindable.c Thu Feb 06 20:02:57 2014 +0530
@@ -257,7 +257,7 @@
* GntBindable API
*****************************************************************************/
GType
-gnt_bindable_get_gtype(void)
+gnt_bindable_get_type(void)
{
static GType type = 0;
--- a/gntbindable.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbindable.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include <glib-object.h>
#include <ncurses.h>
-#define GNT_TYPE_BINDABLE (gnt_bindable_get_gtype())
+#define GNT_TYPE_BINDABLE (gnt_bindable_get_type())
#define GNT_BINDABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_BINDABLE, GntBindable))
#define GNT_BINDABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_BINDABLE, GntBindableClass))
#define GNT_IS_BINDABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_BINDABLE))
@@ -69,7 +69,7 @@
G_BEGIN_DECLS
-GType gnt_bindable_get_gtype(void);
+GType gnt_bindable_get_type(void);
/******************/
/* Key Remaps */
--- a/gntbox.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbox.c Thu Feb 06 20:02:57 2014 +0530
@@ -633,7 +633,7 @@
* GntBox API
*****************************************************************************/
GType
-gnt_box_get_gtype(void)
+gnt_box_get_type(void)
{
static GType type = 0;
--- a/gntbox.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbox.h Thu Feb 06 20:02:57 2014 +0530
@@ -32,7 +32,7 @@
#include "gnt.h"
#include "gntwidget.h"
-#define GNT_TYPE_BOX (gnt_box_get_gtype())
+#define GNT_TYPE_BOX (gnt_box_get_type())
#define GNT_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_BOX, GntBox))
#define GNT_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_BOX, GntBoxClass))
#define GNT_IS_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_BOX))
@@ -98,7 +98,7 @@
*
* Returns: The GType.
*/
-GType gnt_box_get_gtype(void);
+GType gnt_box_get_type(void);
#define gnt_vbox_new(homo) gnt_box_new(homo, TRUE)
#define gnt_hbox_new(homo) gnt_box_new(homo, FALSE)
--- a/gntbutton.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbutton.c Thu Feb 06 20:02:57 2014 +0530
@@ -143,7 +143,7 @@
* GntButton API
*****************************************************************************/
GType
-gnt_button_get_gtype(void) {
+gnt_button_get_type(void) {
static GType type = 0;
if(type == 0) {
--- a/gntbutton.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntbutton.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gnt.h"
#include "gntwidget.h"
-#define GNT_TYPE_BUTTON (gnt_button_get_gtype())
+#define GNT_TYPE_BUTTON (gnt_button_get_type())
#define GNT_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_BUTTON, GntButton))
#define GNT_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_BUTTON, GntButtonClass))
#define GNT_IS_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_BUTTON))
@@ -81,7 +81,7 @@
*
* Returns: GType for Gntbutton
*/
-GType gnt_button_get_gtype(void);
+GType gnt_button_get_type(void);
/**
* gnt_button_new:
--- a/gntcheckbox.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntcheckbox.c Thu Feb 06 20:02:57 2014 +0530
@@ -125,7 +125,7 @@
* GntCheckBox API
*****************************************************************************/
GType
-gnt_check_box_get_gtype(void)
+gnt_check_box_get_type(void)
{
static GType type = 0;
--- a/gntcheckbox.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntcheckbox.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_CHECK_BOX (gnt_check_box_get_gtype())
+#define GNT_TYPE_CHECK_BOX (gnt_check_box_get_type())
#define GNT_CHECK_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_CHECK_BOX, GntCheckBox))
#define GNT_CHECK_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_CHECK_BOX, GntCheckBoxClass))
#define GNT_IS_CHECK_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_CHECK_BOX))
@@ -75,7 +75,7 @@
*
* Returns: GType for GntCheckBox
*/
-GType gnt_check_box_get_gtype(void);
+GType gnt_check_box_get_type(void);
/**
* gnt_check_box_new:
--- a/gntclipboard.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntclipboard.c Thu Feb 06 20:02:57 2014 +0530
@@ -67,7 +67,7 @@
}
GType
-gnt_clipboard_get_gtype(void)
+gnt_clipboard_get_type(void)
{
static GType type = 0;
--- a/gntclipboard.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntclipboard.h Thu Feb 06 20:02:57 2014 +0530
@@ -33,7 +33,7 @@
#include <glib.h>
#include <glib-object.h>
-#define GNT_TYPE_CLIPBOARD (gnt_clipboard_get_gtype())
+#define GNT_TYPE_CLIPBOARD (gnt_clipboard_get_type())
#define GNT_CLIPBOARD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_CLIPBOARD, GntClipboard))
#define GNT_CLIPBOARD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_CLIPBOARD, GntClipboardClass))
#define GNT_IS_CLIPBOARD(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_CLIPBOARD))
@@ -67,7 +67,7 @@
*
* Returns: GType for GntClipboard.
*/
-GType gnt_clipboard_get_gtype(void);
+GType gnt_clipboard_get_type(void);
/**
* gnt_clipboard_get_string:
--- a/gntcombobox.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntcombobox.c Thu Feb 06 20:02:57 2014 +0530
@@ -321,7 +321,7 @@
* GntComboBox API
*****************************************************************************/
GType
-gnt_combo_box_get_gtype(void)
+gnt_combo_box_get_type(void)
{
static GType type = 0;
--- a/gntcombobox.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntcombobox.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntkeys.h"
#include "gntwidget.h"
-#define GNT_TYPE_COMBO_BOX (gnt_combo_box_get_gtype())
+#define GNT_TYPE_COMBO_BOX (gnt_combo_box_get_type())
#define GNT_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_COMBO_BOX, GntComboBox))
#define GNT_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_COMBO_BOX, GntComboBoxClass))
#define GNT_IS_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_COMBO_BOX))
@@ -76,7 +76,7 @@
*
* Returns: Get the GType for GntComboBox
*/
-GType gnt_combo_box_get_gtype(void);
+GType gnt_combo_box_get_type(void);
/**
* gnt_combo_box_new:
--- a/gntentry.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntentry.c Thu Feb 06 20:02:57 2014 +0530
@@ -1064,7 +1064,7 @@
* GntEntry API
*****************************************************************************/
GType
-gnt_entry_get_gtype(void)
+gnt_entry_get_type(void)
{
static GType type = 0;
--- a/gntentry.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntentry.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_ENTRY (gnt_entry_get_gtype())
+#define GNT_TYPE_ENTRY (gnt_entry_get_type())
#define GNT_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_ENTRY, GntEntry))
#define GNT_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_ENTRY, GntEntryClass))
#define GNT_IS_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_ENTRY))
@@ -88,8 +88,8 @@
gboolean word; /* Are the suggestions for only a word, or for the whole thing? */
gboolean always; /* Should the list of suggestions show at all times, or only on tab-press? */
GntWidget *ddown; /* The dropdown with the suggested list */
- GntEntryKillRing *killring; /**< Since: 2.3.0 */
- GntEntrySearch *search; /**< Since: 2.7.0 */
+ GntEntryKillRing *killring; /* Since: 2.3.0 */
+ GntEntrySearch *search; /* Since: 2.7.0 */
};
struct _GntEntryClass
@@ -112,7 +112,7 @@
*
* Returns: GType for GntEntry.
*/
-GType gnt_entry_get_gtype(void);
+GType gnt_entry_get_type(void);
/**
* gnt_entry_new:
--- a/gntfilesel.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntfilesel.c Thu Feb 06 20:02:57 2014 +0530
@@ -554,7 +554,7 @@
* GntFileSel API
*****************************************************************************/
GType
-gnt_file_sel_get_gtype(void)
+gnt_file_sel_get_type(void)
{
static GType type = 0;
--- a/gntfilesel.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntfilesel.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_FILE_SEL (gnt_file_sel_get_gtype())
+#define GNT_TYPE_FILE_SEL (gnt_file_sel_get_type())
#define GNT_FILE_SEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_FILE_SEL, GntFileSel))
#define GNT_FILE_SEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_FILE_SEL, GntFileSelClass))
#define GNT_IS_FILE_SEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_FILE_SEL))
@@ -106,7 +106,7 @@
*
* Returns: GType for GntFileSel.
*/
-GType gnt_file_sel_get_gtype(void);
+GType gnt_file_sel_get_type(void);
/**
* gnt_file_sel_new:
--- a/gntlabel.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntlabel.c Thu Feb 06 20:02:57 2014 +0530
@@ -157,7 +157,7 @@
* GntLabel API
*****************************************************************************/
GType
-gnt_label_get_gtype(void)
+gnt_label_get_type(void)
{
static GType type = 0;
--- a/gntlabel.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntlabel.h Thu Feb 06 20:02:57 2014 +0530
@@ -33,7 +33,7 @@
#include "gntwidget.h"
#include "gnttextview.h"
-#define GNT_TYPE_LABEL (gnt_label_get_gtype())
+#define GNT_TYPE_LABEL (gnt_label_get_type())
#define GNT_LABEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_LABEL, GntLabel))
#define GNT_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_LABEL, GntLabelClass))
#define GNT_IS_LABEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_LABEL))
@@ -75,7 +75,7 @@
*
* Returns: GType for GntLabel.
*/
-GType gnt_label_get_gtype(void);
+GType gnt_label_get_type(void);
/**
* gnt_label_new:
--- a/gntline.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntline.c Thu Feb 06 20:02:57 2014 +0530
@@ -139,7 +139,7 @@
* GntLine API
*****************************************************************************/
GType
-gnt_line_get_gtype(void)
+gnt_line_get_type(void)
{
static GType type = 0;
--- a/gntline.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntline.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_LINE (gnt_line_get_gtype())
+#define GNT_TYPE_LINE (gnt_line_get_type())
#define GNT_LINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_LINE, GntLine))
#define GNT_LINE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_LINE, GntLineClass))
#define GNT_IS_LINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_LINE))
@@ -74,7 +74,7 @@
*
* Returns: GType for GntLine.
*/
-GType gnt_line_get_gtype(void);
+GType gnt_line_get_type(void);
#define gnt_hline_new() gnt_line_new(FALSE)
#define gnt_vline_new() gnt_line_new(TRUE)
--- a/gntmenu.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenu.c Thu Feb 06 20:02:57 2014 +0530
@@ -450,7 +450,7 @@
* GntMenu API
*****************************************************************************/
GType
-gnt_menu_get_gtype(void)
+gnt_menu_get_type(void)
{
static GType type = 0;
--- a/gntmenu.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenu.h Thu Feb 06 20:02:57 2014 +0530
@@ -33,7 +33,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_MENU (gnt_menu_get_gtype())
+#define GNT_TYPE_MENU (gnt_menu_get_type())
#define GNT_MENU(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_MENU, GntMenu))
#define GNT_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_MENU, GntMenuClass))
#define GNT_IS_MENU(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_MENU))
@@ -97,7 +97,7 @@
*
* Returns: The GType for GntMenu.
*/
-GType gnt_menu_get_gtype(void);
+GType gnt_menu_get_type(void);
/**
* gnt_menu_new:
--- a/gntmenuitem.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenuitem.c Thu Feb 06 20:02:57 2014 +0530
@@ -71,7 +71,7 @@
* GntMenuItem API
*****************************************************************************/
GType
-gnt_menuitem_get_gtype(void)
+gnt_menuitem_get_type(void)
{
static GType type = 0;
--- a/gntmenuitem.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenuitem.h Thu Feb 06 20:02:57 2014 +0530
@@ -32,7 +32,7 @@
#include <glib.h>
#include <glib-object.h>
-#define GNT_TYPE_MENU_ITEM (gnt_menuitem_get_gtype())
+#define GNT_TYPE_MENU_ITEM (gnt_menuitem_get_type())
#define GNT_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_MENU_ITEM, GntMenuItem))
#define GNT_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_MENU_ITEM, GntMenuItemClass))
#define GNT_IS_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_MENU_ITEM))
@@ -94,7 +94,7 @@
*
* Returns: GType for GntMenuItem.
*/
-GType gnt_menuitem_get_gtype(void);
+GType gnt_menuitem_get_type(void);
/**
* gnt_menuitem_new:
@@ -152,7 +152,7 @@
*
* Get the trigger key for a menuitem.
*
- * @see gnt_menuitem_set_trigger
+ * See gnt_menuitem_set_trigger().
*
* Returns: The trigger key for the menuitem.
*/
--- a/gntmenuitemcheck.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenuitemcheck.c Thu Feb 06 20:02:57 2014 +0530
@@ -43,7 +43,7 @@
* GntMenuItemCheck API
*****************************************************************************/
GType
-gnt_menuitem_check_get_gtype(void)
+gnt_menuitem_check_get_type(void)
{
static GType type = 0;
--- a/gntmenuitemcheck.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntmenuitemcheck.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntkeys.h"
#include "gntmenuitem.h"
-#define GNT_TYPE_MENU_ITEM_CHECK (gnt_menuitem_check_get_gtype())
+#define GNT_TYPE_MENU_ITEM_CHECK (gnt_menuitem_check_get_type())
#define GNT_MENU_ITEM_CHECK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_MENU_ITEM_CHECK, GntMenuItemCheck))
#define GNT_MENU_ITEM_CHECK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_MENU_ITEM_CHECK, GntMenuItemCheckClass))
#define GNT_IS_MENU_ITEM_CHECK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_MENU_ITEM_CHECK))
@@ -73,7 +73,7 @@
*
* Returns: GType for GntMenuItemCheck.
*/
-GType gnt_menuitem_check_get_gtype(void);
+GType gnt_menuitem_check_get_type(void);
/**
* gnt_menuitem_check_new:
--- a/gntprogressbar.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntprogressbar.c Thu Feb 06 20:02:57 2014 +0530
@@ -143,7 +143,7 @@
}
GType
-gnt_progress_bar_get_gtype (void)
+gnt_progress_bar_get_type (void)
{
static GType type = 0;
--- a/gntprogressbar.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntprogressbar.h Thu Feb 06 20:02:57 2014 +0530
@@ -32,7 +32,7 @@
#include "gnt.h"
#include "gntwidget.h"
-#define GNT_TYPE_PROGRESS_BAR (gnt_progress_bar_get_gtype ())
+#define GNT_TYPE_PROGRESS_BAR (gnt_progress_bar_get_type ())
#define GNT_PROGRESS_BAR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GNT_TYPE_PROGRESS_BAR, GntProgressBar))
#define GNT_PROGRESS_BAR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GNT_TYPE_PROGRESS_BAR, GntProgressBarClass))
#define GNT_IS_PROGRESS_BAR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNT_TYPE_PROGRESS_BAR))
@@ -69,7 +69,7 @@
* Returns: The GType for GntProrgressBar
*/
GType
-gnt_progress_bar_get_gtype (void);
+gnt_progress_bar_get_type (void);
/**
* gnt_progress_bar_new:
--- a/gntslider.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntslider.c Thu Feb 06 20:02:57 2014 +0530
@@ -236,7 +236,7 @@
* GntSlider API
*****************************************************************************/
GType
-gnt_slider_get_gtype(void)
+gnt_slider_get_type(void)
{
static GType type = 0;
--- a/gntslider.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntslider.h Thu Feb 06 20:02:57 2014 +0530
@@ -33,7 +33,7 @@
#include "gnt.h"
#include "gntlabel.h"
-#define GNT_TYPE_SLIDER (gnt_slider_get_gtype())
+#define GNT_TYPE_SLIDER (gnt_slider_get_type())
#define GNT_SLIDER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_SLIDER, GntSlider))
#define GNT_SLIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_SLIDER, GntSliderClass))
#define GNT_IS_SLIDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_SLIDER))
@@ -84,7 +84,7 @@
*
* Since: 2.0.0 (gnt), 2.1.0 (pidgin)
*/
-GType gnt_slider_get_gtype(void);
+GType gnt_slider_get_type(void);
#define gnt_hslider_new(max, min) gnt_slider_new(FALSE, max, min)
#define gnt_vslider_new(max, min) gnt_slider_new(TRUE, max, min)
--- a/gntstyle.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntstyle.h Thu Feb 06 20:02:57 2014 +0530
@@ -128,14 +128,14 @@
/**
* gnt_styles_get_keyremaps:
*
- * @internal
+ * Internal function -- do not use.
*/
void gnt_styles_get_keyremaps(GType type, GHashTable *hash);
/**
* gnt_style_read_actions:
*
- * @internal
+ * Internal function -- do not use.
*/
void gnt_style_read_actions(GType type, GntBindableClass *klass);
@@ -153,8 +153,9 @@
/**
* gnt_style_read_workspaces:
*
- * @internal
- * Read workspace information.
+ * Reads workspace information.
+ *
+ * Internal function -- do not use.
*/
void gnt_style_read_workspaces(GntWM *wm);
--- a/gnttextview.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gnttextview.c Thu Feb 06 20:02:57 2014 +0530
@@ -470,7 +470,7 @@
* GntTextView API
*****************************************************************************/
GType
-gnt_text_view_get_gtype(void)
+gnt_text_view_get_type(void)
{
static GType type = 0;
--- a/gnttextview.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gnttextview.h Thu Feb 06 20:02:57 2014 +0530
@@ -34,7 +34,7 @@
#include "gntcolors.h"
#include "gntkeys.h"
-#define GNT_TYPE_TEXT_VIEW (gnt_text_view_get_gtype())
+#define GNT_TYPE_TEXT_VIEW (gnt_text_view_get_type())
#define GNT_TEXT_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_TEXT_VIEW, GntTextView))
#define GNT_TEXT_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_TEXT_VIEW, GntTextViewClass))
#define GNT_IS_TEXT_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_TEXT_VIEW))
@@ -95,7 +95,7 @@
*
* Returns: GType for GntTextView.
*/
-GType gnt_text_view_get_gtype(void);
+GType gnt_text_view_get_type(void);
/**
* gnt_text_view_new:
--- a/gnttree.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gnttree.c Thu Feb 06 20:02:57 2014 +0530
@@ -1142,7 +1142,7 @@
* GntTree API
*****************************************************************************/
GType
-gnt_tree_get_gtype(void)
+gnt_tree_get_type(void)
{
static GType type = 0;
--- a/gnttree.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gnttree.h Thu Feb 06 20:02:57 2014 +0530
@@ -35,7 +35,7 @@
#include "gntkeys.h"
#include "gnttextview.h"
-#define GNT_TYPE_TREE (gnt_tree_get_gtype())
+#define GNT_TYPE_TREE (gnt_tree_get_type())
#define GNT_TREE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_TREE, GntTree))
#define GNT_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_TREE, GntTreeClass))
#define GNT_IS_TREE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_TREE))
@@ -109,7 +109,7 @@
*
* Returns: The GType for GntTree
*/
-GType gnt_tree_get_gtype(void);
+GType gnt_tree_get_type(void);
/**
* gnt_tree_new:
@@ -118,7 +118,7 @@
*
* Returns: The newly created tree
*
- * @see gnt_tree_new_with_columns
+ * See gnt_tree_new_with_columns().
*/
GntWidget * gnt_tree_new(void);
@@ -128,7 +128,7 @@
*
* Create a tree with a specified number of columns.
*
- * @see gnt_tree_new
+ * See gnt_tree_new().
*
* Returns: The newly created tree
*/
@@ -173,9 +173,7 @@
*
* Insert a row in the tree.
*
- * @see gnt_tree_create_row
- * @see gnt_tree_add_row_last
- * @see gnt_tree_add_choice
+ * See gnt_tree_create_row(), gnt_tree_add_row_last(), gnt_tree_add_choice().
*
* Returns: The inserted row
*/
@@ -190,9 +188,7 @@
*
* Insert a row at the end of the tree.
*
- * @see gnt_tree_create_row
- * @see gnt_tree_add_row_after
- * @see gnt_tree_add_choice
+ * See gnt_tree_create_row(), gnt_tree_add_row_after(), gnt_tree_add_choice().
*
* Returns: The inserted row
*/
@@ -214,8 +210,7 @@
*
* Get the text displayed for the selected row.
*
- * @see gnt_tree_get_row_text_list
- * @see gnt_tree_get_selection_text_list
+ * See gnt_tree_get_row_text_list(), gnt_tree_get_selection_text_list().
*
* Returns: The text, which needs to be freed by the caller
*/
@@ -230,8 +225,7 @@
*
* Get a list of text for a row.
*
- * @see gnt_tree_get_selection_text_list
- * @see gnt_tree_get_selection_text
+ * See gnt_tree_get_selection_text_list(), gnt_tree_get_selection_text().
*
* Returns: A list of texts of a row. The list and its data should be
* freed by the caller. The caller should make sure that if
@@ -310,8 +304,7 @@
*
* Get a list of text of the current row.
*
- * @see gnt_tree_get_row_text_list
- * @see gnt_tree_get_selection_text
+ * See gnt_tree_get_row_text_list(), gnt_tree_get_selection_text().
*
* Returns: A list of texts of the currently selected row. The list
* and its data should be freed by the caller. The caller
@@ -378,10 +371,8 @@
*
* Add a checkable item in the tree.
*
- * @see gnt_tree_create_row
- * @see gnt_tree_create_row_from_list
- * @see gnt_tree_add_row_last
- * @see gnt_tree_add_row_after
+ * See gnt_tree_create_row(), gnt_tree_create_row_from_list(),
+ * gnt_tree_add_row_last(), gnt_tree_add_row_after().
*
* Returns: The row inserted.
*/
@@ -446,10 +437,8 @@
*
* Create a row to insert in the tree.
*
- * @see gnt_tree_create_row_from_list
- * @see gnt_tree_add_row_after
- * @see gnt_tree_add_row_last
- * @see gnt_tree_add_choice
+ * See gnt_tree_create_row_from_list(), gnt_tree_add_row_after(),
+ * gnt_tree_add_row_last(), gnt_tree_add_choice().
*
* Returns: The row
*/
@@ -462,10 +451,8 @@
*
* Create a row from a list of text.
*
- * @see gnt_tree_create_row
- * @see gnt_tree_add_row_after
- * @see gnt_tree_add_row_last
- * @see gnt_tree_add_choice
+ * See gnt_tree_create_row(), gnt_tree_add_row_after(), gnt_tree_add_row_last(),
+ * gnt_tree_add_choice().
*
* Returns: The row
*/
@@ -479,8 +466,7 @@
*
* Set the width of a column in the tree.
*
- * @see gnt_tree_set_column_width_ratio
- * @see gnt_tree_set_column_resizable
+ * See gnt_tree_set_column_width_ratio(), gnt_tree_set_column_resizable()
*/
void gnt_tree_set_col_width(GntTree *tree, int col, int width);
@@ -492,8 +478,7 @@
*
* Set the title for a column.
*
- * @see gnt_tree_set_column_titles
- * @see gnt_tree_set_show_title
+ * See gnt_tree_set_column_titles(), gnt_tree_set_show_title().
*
* Since: 2.0.0 (gnt), 2.1.0 (pidgin)
*/
@@ -506,8 +491,7 @@
*
* Set the titles of the columns
*
- * @see gnt_tree_set_column_title
- * @see gnt_tree_set_show_title
+ * See gnt_tree_set_column_title(), gnt_tree_set_show_title().
*/
void gnt_tree_set_column_titles(GntTree *tree, ...);
@@ -518,8 +502,7 @@
*
* Set whether to display the title of the columns.
*
- * @see gnt_tree_set_column_title
- * @see gnt_tree_set_column_titles
+ * See gnt_tree_set_column_title(), gnt_tree_set_column_titles().
*/
void gnt_tree_set_show_title(GntTree *tree, gboolean set);
@@ -531,7 +514,7 @@
*
* Set the compare function for sorting the data.
*
- * @see gnt_tree_sort_row
+ * See gnt_tree_sort_row().
*/
void gnt_tree_set_compare_func(GntTree *tree, GCompareFunc func);
@@ -561,7 +544,7 @@
*
* Sort a row in the tree.
*
- * @see gnt_tree_set_compare_func
+ * See gnt_tree_set_compare_func().
*/
void gnt_tree_sort_row(GntTree *tree, void *row);
@@ -607,8 +590,7 @@
* Set whether a column can be resized to keep the same ratio when the
* tree is resized.
*
- * @see gnt_tree_set_col_width
- * @see gnt_tree_set_column_width_ratio
+ * See gnt_tree_set_col_width(), gnt_tree_set_column_width_ratio().
*
* Since: 2.0.0 (gnt), 2.1.0 (pidgin)
*/
@@ -647,8 +629,7 @@
* Set column widths to use when calculating column widths after a tree
* is resized.
*
- * @see gnt_tree_set_col_width
- * @see gnt_tree_set_column_resizable
+ * See gnt_tree_set_col_width(), gnt_tree_set_column_resizable().
*
* Since: 2.0.0 (gnt), 2.1.0 (pidgin)
*/
--- a/gntwidget.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwidget.c Thu Feb 06 20:02:57 2014 +0530
@@ -268,7 +268,7 @@
* GntWidget API
*****************************************************************************/
GType
-gnt_widget_get_gtype(void)
+gnt_widget_get_type(void)
{
static GType type = 0;
--- a/gntwidget.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwidget.h Thu Feb 06 20:02:57 2014 +0530
@@ -35,7 +35,7 @@
#include "gntbindable.h"
-#define GNT_TYPE_WIDGET (gnt_widget_get_gtype())
+#define GNT_TYPE_WIDGET (gnt_widget_get_type())
#define GNT_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_WIDGET, GntWidget))
#define GNT_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_WIDGET, GntWidgetClass))
#define GNT_IS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_WIDGET))
@@ -148,7 +148,7 @@
*
* Returns: GType for GntWidget.
*/
-GType gnt_widget_get_gtype(void);
+GType gnt_widget_get_type(void);
/**
* gnt_widget_destroy:
@@ -181,8 +181,9 @@
/**
* gnt_widget_expose:
*
- * @internal
* Expose part of a widget.
+ *
+ * Internal function -- do not use.
*/
void gnt_widget_expose(GntWidget *widget, int x, int y, int width, int height);
@@ -322,8 +323,8 @@
/**
* gnt_widget_queue_update:
*
- * @internal
- * Use #gnt_widget_draw instead.
+ * Internal function -- do not use.
+ * Use gnt_widget_draw() instead.
*/
void gnt_widget_queue_update(GntWidget *widget);
--- a/gntwindow.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwindow.c Thu Feb 06 20:02:57 2014 +0530
@@ -131,7 +131,7 @@
* GntWindow API
*****************************************************************************/
GType
-gnt_window_get_gtype(void)
+gnt_window_get_type(void)
{
static GType type = 0;
--- a/gntwindow.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwindow.h Thu Feb 06 20:02:57 2014 +0530
@@ -35,7 +35,7 @@
#include "gntkeys.h"
#include "gntmenu.h"
-#define GNT_TYPE_WINDOW (gnt_window_get_gtype())
+#define GNT_TYPE_WINDOW (gnt_window_get_type())
#define GNT_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_WINDOW, GntWindow))
#define GNT_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_WINDOW, GntWindowClass))
#define GNT_IS_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_WINDOW))
@@ -81,7 +81,7 @@
*
* Returns: GType for GntWindow.
*/
-GType gnt_window_get_gtype(void);
+GType gnt_window_get_type(void);
#define gnt_vwindow_new(homo) gnt_window_box_new(homo, TRUE)
#define gnt_hwindow_new(homo) gnt_window_box_new(homo, FALSE)
--- a/gntwm.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwm.c Thu Feb 06 20:02:57 2014 +0530
@@ -1590,7 +1590,7 @@
* GntWM API
*****************************************************************************/
GType
-gnt_wm_get_gtype(void)
+gnt_wm_get_type(void)
{
static GType type = 0;
--- a/gntwm.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntwm.h Thu Feb 06 20:02:57 2014 +0530
@@ -36,7 +36,7 @@
#include <panel.h>
#include <time.h>
-#define GNT_TYPE_WM (gnt_wm_get_gtype())
+#define GNT_TYPE_WM (gnt_wm_get_type())
#define GNT_WM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_WM, GntWM))
#define GNT_WM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_WM, GntWMClass))
#define GNT_IS_WM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_WM))
@@ -197,7 +197,7 @@
*
* Returns: GType for GntWM.
*/
-GType gnt_wm_get_gtype(void);
+GType gnt_wm_get_type(void);
/**
* gnt_wm_add_workspace:
@@ -360,14 +360,14 @@
/**
* gnt_wm_set_event_stack:
*
- * @internal
+ * Internal function -- do not use.
*/
void gnt_wm_set_event_stack(GntWM *wm, gboolean set);
/**
* gnt_wm_copy_win:
*
- * @internal
+ * Internal function -- do not use.
*/
void gnt_wm_copy_win(GntWidget *widget, GntNode *node);
@@ -379,4 +379,5 @@
time_t gnt_wm_get_idle_time(void);
G_END_DECLS
+
#endif
--- a/gntws.c Tue Feb 04 17:40:14 2014 +0530
+++ b/gntws.c Thu Feb 06 20:02:57 2014 +0530
@@ -160,7 +160,7 @@
}
GType
-gnt_ws_get_gtype(void)
+gnt_ws_get_type(void)
{
static GType type = 0;
--- a/gntws.h Tue Feb 04 17:40:14 2014 +0530
+++ b/gntws.h Thu Feb 06 20:02:57 2014 +0530
@@ -33,7 +33,7 @@
#include <panel.h>
-#define GNT_TYPE_WS (gnt_ws_get_gtype())
+#define GNT_TYPE_WS (gnt_ws_get_type())
#define GNT_WS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_WS, GntWS))
#define GNT_IS_WS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_WS))
#define GNT_IS_WS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GNT_TYPE_WS))
@@ -78,7 +78,7 @@
*
* Since: 2.0.0 (gnt), 2.1.0 (pidgin)
*/
-GType gnt_ws_get_gtype(void);
+GType gnt_ws_get_type(void);
/**
* gnt_ws_new:
--- a/wms/irssi.c Tue Feb 04 17:40:14 2014 +0530
+++ b/wms/irssi.c Thu Feb 06 20:02:57 2014 +0530
@@ -43,7 +43,7 @@
#include "gntwindow.h"
#include "gntlabel.h"
-#define TYPE_IRSSI (irssi_get_gtype())
+#define TYPE_IRSSI (irssi_get_type())
typedef struct _Irssi
{
@@ -60,7 +60,7 @@
GntWMClass inherit;
} IrssiClass;
-GType irssi_get_gtype(void);
+GType irssi_get_type(void);
void gntwm_init(GntWM **wm);
static void (*org_new_window)(GntWM *wm, GntWidget *win);
@@ -367,7 +367,7 @@
irssi->buddylistwidth = 0;
}
-GType irssi_get_gtype(void)
+GType irssi_get_type(void)
{
static GType type = 0;
--- a/wms/s.c Tue Feb 04 17:40:14 2014 +0530
+++ b/wms/s.c Thu Feb 06 20:02:57 2014 +0530
@@ -13,7 +13,7 @@
#include "buddylist.h"
-#define TYPE_S (s_get_gtype())
+#define TYPE_S (s_get_type())
#ifdef _S
#undef _S
@@ -29,7 +29,7 @@
GntWMClass inherit;
} SClass;
-GType s_get_gtype(void);
+GType s_get_type(void);
void gntwm_init(GntWM **wm);
static void (*org_new_window)(GntWM *wm, GntWidget *win);
@@ -197,7 +197,7 @@
*wm = g_object_new(TYPE_S, NULL);
}
-GType s_get_gtype(void)
+GType s_get_type(void)
{
static GType type = 0;