Enlightenment CVS committal Author : doursse Project : e17 Module : libs/etk
Dir : e17/libs/etk/src/lib Modified Files: etk_box.h etk_button.h etk_entry.h etk_event.h etk_popup_window.h etk_property.h etk_scrolled_view.h etk_selection.h etk_shadow.h etk_stock.h etk_table.h etk_toolbar.h etk_widget.h etk_window.h Log Message: no comma at the end of an enum =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_box.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- etk_box.h 15 Aug 2006 20:20:43 -0000 1.7 +++ etk_box.h 27 Jan 2007 05:14:32 -0000 1.8 @@ -40,7 +40,7 @@ { ETK_BOX_START, /**< The start-group of children: the children in this group are displayed * at the start (left or top) of the box */ - ETK_BOX_END, /**< The end-group of children: the children in this group are displayed + ETK_BOX_END /**< The end-group of children: the children in this group are displayed * at the end (right or bottom) of the box */ } Etk_Box_Group; @@ -50,7 +50,7 @@ ETK_BOX_NONE = 0, /**< The child does not fill or expand */ ETK_BOX_EXPAND = 1 << 0, /**< The cell containing the child will expand to take all the available space */ ETK_BOX_FILL = 1 << 1, /**< The child will fill all the available space in its cell */ - ETK_BOX_EXPAND_FILL = ETK_BOX_EXPAND | ETK_BOX_FILL, /**< Equivalent to ETK_BOX_EXPAND | ETK_BOX_FILL */ + ETK_BOX_EXPAND_FILL = ETK_BOX_EXPAND | ETK_BOX_FILL /**< Equivalent to ETK_BOX_EXPAND | ETK_BOX_FILL */ } Etk_Box_Fill_Policy; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_button.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- etk_button.h 3 Jan 2007 18:10:11 -0000 1.12 +++ etk_button.h 27 Jan 2007 05:14:32 -0000 1.13 @@ -28,7 +28,7 @@ ETK_BUTTON_ICON, /**< Only the icon is visible */ ETK_BUTTON_TEXT, /**< Only the label is visible */ ETK_BUTTON_BOTH_HORIZ, /**< Both the icon and the label are visible, the icon is at the left of the label */ - ETK_BUTTON_BOTH_VERT, /**< Both the icon and the label are visible, the icon is above the label */ + ETK_BUTTON_BOTH_VERT /**< Both the icon and the label are visible, the icon is above the label */ } Etk_Button_Style; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_entry.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- etk_entry.h 13 Jan 2007 23:00:38 -0000 1.10 +++ etk_entry.h 27 Jan 2007 05:14:32 -0000 1.11 @@ -23,7 +23,7 @@ typedef enum Etk_Entry_Image_Position { ETK_ENTRY_IMAGE_PRIMARY = 1, /**< The image is primary, usually to the left of the editable object */ - ETK_ENTRY_IMAGE_SECONDARY = 2, /**< The image is secondary, usually to the right of the editable object */ + ETK_ENTRY_IMAGE_SECONDARY = 2 /**< The image is secondary, usually to the right of the editable object */ } Etk_Entry_Image_Position; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_event.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- etk_event.h 19 Jan 2007 17:20:23 -0000 1.4 +++ etk_event.h 27 Jan 2007 05:14:32 -0000 1.5 @@ -31,7 +31,7 @@ ETK_MODIFIER_CTRL = 1 << 0, /**< "Control" is pressed */ ETK_MODIFIER_ALT = 1 << 1, /**< "Alt" is pressed */ ETK_MODIFIER_SHIFT = 1 << 2, /**< "Shift" is pressed */ - ETK_MODIFIER_WIN = 1 << 3, /**< "Win" (between "Ctrl" and "Alt") is pressed */ + ETK_MODIFIER_WIN = 1 << 3 /**< "Win" (between "Ctrl" and "Alt") is pressed */ } Etk_Modifiers; /** @brief The keyboard locks active when the event has been emitted */ @@ -40,7 +40,7 @@ ETK_LOCK_NONE = 0, /**< No locks are active */ ETK_LOCK_NUM = 1 << 0, /**< "Num" lock is active */ ETK_LOCK_CAPS = 1 << 1, /**< "Caps" lock is active */ - ETK_LOCK_SCROLL = 1 << 2, /**< "Scroll" lock is active */ + ETK_LOCK_SCROLL = 1 << 2 /**< "Scroll" lock is active */ } Etk_Locks; /** @brief A flag describing whether the click was a single, double or triple click */ @@ -48,14 +48,14 @@ { ETK_MOUSE_NONE = 0, /**< A single click */ ETK_MOUSE_DOUBLE_CLICK = 1 << 0, /**< A double click */ - ETK_MOUSE_TRIPLE_CLICK = 1 << 1, /**< A triple click */ + ETK_MOUSE_TRIPLE_CLICK = 1 << 1 /**< A triple click */ } Etk_Mouse_Flags; /** @brief The scroll direction corresponding to the wheel event */ typedef enum Etk_Wheel_Direction { ETK_WHEEL_VERTICAL, /**< Vertical scrolling */ - ETK_WHEEL_HORIZONTAL, /**< Horizontal scrolling */ + ETK_WHEEL_HORIZONTAL /**< Horizontal scrolling */ } Etk_Wheel_Direction; =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_popup_window.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- etk_popup_window.h 3 Sep 2006 22:29:03 -0000 1.6 +++ etk_popup_window.h 27 Jan 2007 05:14:32 -0000 1.7 @@ -25,7 +25,7 @@ ETK_POPUP_BELOW_RIGHT, /**< The window is popped up on the right, below the given position (default) */ ETK_POPUP_BELOW_LEFT, /**< The window is popped up on the left, below the given position */ ETK_POPUP_ABOVE_RIGHT, /**< The window is popped up on the right, above the given position */ - ETK_POPUP_ABOVE_LEFT, /**< The window is popped up on the left, above the given position */ + ETK_POPUP_ABOVE_LEFT /**< The window is popped up on the left, above the given position */ } Etk_Popup_Direction; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_property.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- etk_property.h 18 Aug 2006 21:59:51 -0000 1.7 +++ etk_property.h 27 Jan 2007 05:14:32 -0000 1.8 @@ -25,7 +25,7 @@ ETK_PROPERTY_LONG, /**< The value of the property is a long */ ETK_PROPERTY_POINTER, /**< The value of the property is a pointer (void *) */ ETK_PROPERTY_STRING, /**< The value of the property is a string (char *) */ - ETK_PROPERTY_OTHER, /**< Used when none of the above type can be used. The property can't have a default + ETK_PROPERTY_OTHER /**< Used when none of the above type can be used. The property can't have a default * value, and can't be accessible with etk_object_property_get/set(). * The only interest of this kind of property is that you can still use etk_object_notify() * when the value of the property has been modified. You then have to use the API of =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_scrolled_view.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- etk_scrolled_view.h 28 Nov 2006 21:40:07 -0000 1.7 +++ etk_scrolled_view.h 27 Jan 2007 05:14:32 -0000 1.8 @@ -28,7 +28,7 @@ ETK_POLICY_AUTO, /**< The scrollbar is shown and hidden automatically whether or not the child can fit * entirely in the scrolled view */ ETK_POLICY_SHOW, /**< The scrollbar is always visible */ - ETK_POLICY_HIDE, /**< The scrollbar is always hidden */ + ETK_POLICY_HIDE /**< The scrollbar is always hidden */ } Etk_Scrolled_View_Policy; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_selection.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- etk_selection.h 6 Oct 2006 17:04:15 -0000 1.2 +++ etk_selection.h 27 Jan 2007 05:14:32 -0000 1.3 @@ -27,7 +27,7 @@ /** @brief The different types of content of a selection */ typedef enum Etk_Selection_Content_Type { - ETK_SELECTION_TEXT, /**< The content of the selection is a text */ + ETK_SELECTION_TEXT /**< The content of the selection is a text */ } Etk_Selection_Content_Type; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_shadow.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- etk_shadow.h 29 Oct 2006 11:39:54 -0000 1.3 +++ etk_shadow.h 27 Jan 2007 05:14:32 -0000 1.4 @@ -24,7 +24,7 @@ { ETK_SHADOW_NONE, /* TODOC */ ETK_SHADOW_INSIDE, /* TODOC */ - ETK_SHADOW_OUTSIDE, /* TODOC */ + ETK_SHADOW_OUTSIDE /* TODOC */ } Etk_Shadow_Type; /** @brief The different edges where a shadow can be */ =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_stock.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- etk_stock.h 3 Jan 2007 23:35:25 -0000 1.14 +++ etk_stock.h 27 Jan 2007 05:14:32 -0000 1.15 @@ -17,7 +17,7 @@ { ETK_STOCK_SMALL, /* 16x16 */ ETK_STOCK_MEDIUM, /* 22x22 */ - ETK_STOCK_BIG, /* 48x48 */ + ETK_STOCK_BIG /* 48x48 */ } Etk_Stock_Size; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_table.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- etk_table.h 15 Aug 2006 20:20:43 -0000 1.6 +++ etk_table.h 27 Jan 2007 05:14:32 -0000 1.7 @@ -31,7 +31,7 @@ /**< will take as much place as possible in the vertical direction */ ETK_TABLE_FILL = ETK_TABLE_HFILL | ETK_TABLE_VFILL, /**< Equivalent to ETK_TABLE_HFILL | ETK_TABLE_VFILL */ ETK_TABLE_EXPAND = ETK_TABLE_HEXPAND | ETK_TABLE_VEXPAND, /**< Equivalent to ETK_TABLE_HEXPAND | ETK_TABLE_VEXPAND */ - ETK_TABLE_EXPAND_FILL = ETK_TABLE_EXPAND | ETK_TABLE_FILL, /**< Equivalent to ETK_TABLE_EXPAND | ETK_TABLE_FILL */ + ETK_TABLE_EXPAND_FILL = ETK_TABLE_EXPAND | ETK_TABLE_FILL /**< Equivalent to ETK_TABLE_EXPAND | ETK_TABLE_FILL */ } Etk_Table_Fill_Policy; /* A cell of a table */ =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_toolbar.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- etk_toolbar.h 6 Oct 2006 17:04:15 -0000 1.5 +++ etk_toolbar.h 27 Jan 2007 05:14:32 -0000 1.6 @@ -29,7 +29,7 @@ typedef enum Etk_Toolbar_Orientation { ETK_TOOLBAR_HORIZ, /**< The toolbar is horizontal */ - ETK_TOOLBAR_VERT, /**< The toolbar is vertical */ + ETK_TOOLBAR_VERT /**< The toolbar is vertical */ } Etk_Toolbar_Orientation; /** @brief The style of the toolbar's buttons (icon, text, both vertically, both horizontally) */ @@ -39,7 +39,7 @@ ETK_TOOLBAR_ICON, /**< Only the icon is visible */ ETK_TOOLBAR_TEXT, /**< Only the label is visible */ ETK_TOOLBAR_BOTH_HORIZ, /**< Both the icon and the label are visible, the icon is at the left of the label */ - ETK_TOOLBAR_BOTH_VERT, /**< Both the icon and the label are visible, the icon is above the label */ + ETK_TOOLBAR_BOTH_VERT /**< Both the icon and the label are visible, the icon is above the label */ } Etk_Toolbar_Style; /** =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_widget.h,v retrieving revision 1.42 retrieving revision 1.43 diff -u -3 -r1.42 -r1.43 --- etk_widget.h 12 Jan 2007 02:53:56 -0000 1.42 +++ etk_widget.h 27 Jan 2007 05:14:32 -0000 1.43 @@ -29,7 +29,7 @@ ETK_SWALLOW_ERROR_NONE, /**< The object has been succesfully swallowed */ ETK_SWALLOW_ERROR_INCOMPATIBLE_PARENT, /**< The parent of the widget to swallow was not the swallower widget */ ETK_SWALLOW_ERROR_NOT_REALIZED, /**< The swallower widget was not realized */ - ETK_SWALLOW_ERROR_NO_PART, /**< The part where to swallow the object has not been found + ETK_SWALLOW_ERROR_NO_PART /**< The part where to swallow the object has not been found * in the theme object of the swallower widget */ } Etk_Widget_Swallow_Error; =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_window.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -3 -r1.20 -r1.21 --- etk_window.h 13 Jan 2007 19:29:19 -0000 1.20 +++ etk_window.h 27 Jan 2007 05:14:32 -0000 1.21 @@ -23,7 +23,7 @@ { ETK_WINDOW_NORMAL, /**< The window is stacked in the default layer */ ETK_WINDOW_ABOVE, /**< The window is stacked above all the other windows */ - ETK_WINDOW_BELOW, /**< The window is stacked below all the other windows */ + ETK_WINDOW_BELOW /**< The window is stacked below all the other windows */ } Etk_Window_Stacking; /** ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs