Changeset 94063 in webkit
- Timestamp:
- Aug 30, 2011, 2:39:00 AM (15 years ago)
- Location:
- trunk/Source/WebKit/efl
- Files:
-
- 10 edited
-
ChangeLog (modified) (1 diff)
-
ewk/ewk_contextmenu.cpp (modified) (8 diffs)
-
ewk/ewk_contextmenu.h (modified) (6 diffs)
-
ewk/ewk_frame.cpp (modified) (4 diffs)
-
ewk/ewk_frame.h (modified) (4 diffs)
-
ewk/ewk_private.h (modified) (3 diffs)
-
ewk/ewk_view.cpp (modified) (16 diffs)
-
ewk/ewk_view.h (modified) (14 diffs)
-
ewk/ewk_window_features.cpp (modified) (2 diffs)
-
ewk/ewk_window_features.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/efl/ChangeLog
r94034 r94063 1 2011-08-30 Grzegorz Czajkowski <g.czajkowski@samsung.com> 2 3 [EFL] Add const modifier to passed objects where it's recommended 4 https://bugs.webkit.org/show_bug.cgi?id=67110 5 6 Reviewed by Kent Tamura. 7 8 Add const modifier to passed Evas_Object if the function doesn't change its 9 property (the most cases to the getter functions). 10 11 * ewk/ewk_contextmenu.cpp: 12 (ewk_context_menu_item_list_get): 13 (ewk_context_menu_item_type_get): 14 (ewk_context_menu_item_action_get): 15 (ewk_context_menu_item_title_get): 16 (ewk_context_menu_item_checked_get): 17 (ewk_context_menu_item_enabled_get): 18 (ewk_context_menu_custom_get): 19 (ewk_context_menu_show): 20 * ewk/ewk_contextmenu.h: 21 * ewk/ewk_frame.cpp: 22 (ewk_frame_text_matches_nth_pos_get): 23 (ewk_frame_text_selection_type_get): 24 (ewk_frame_source_get): 25 (ewk_frame_resources_location_get): 26 * ewk/ewk_frame.h: 27 * ewk/ewk_private.h: 28 * ewk/ewk_view.cpp: 29 (_ewk_view_viewport_attributes_compute): 30 (ewk_view_fixed_layout_size_get): 31 (ewk_view_theme_get): 32 (ewk_view_imh_get): 33 (ewk_view_setting_encoding_detector_get): 34 (ewk_view_setting_enable_developer_extras_get): 35 (ewk_view_setting_spatial_navigation_get): 36 (ewk_view_setting_local_storage_get): 37 (ewk_view_setting_page_cache_get): 38 (ewk_view_viewport_attributes_get): 39 (ewk_view_zoom_range_min_get): 40 (ewk_view_zoom_range_max_get): 41 (ewk_view_user_scalable_get): 42 (ewk_view_device_pixel_ratio_get): 43 (ewk_view_page_rect_get): 44 (ewk_view_mode_get): 45 * ewk/ewk_view.h: 46 * ewk/ewk_window_features.cpp: 47 (ewk_window_features_bool_property_get): 48 (ewk_window_features_int_property_get): 49 * ewk/ewk_window_features.h: 50 1 51 2011-08-29 Grzegorz Czajkowski <g.czajkowski@samsung.com> 2 52 -
trunk/Source/WebKit/efl/ewk/ewk_contextmenu.cpp
r92473 r94063 93 93 } 94 94 95 const Eina_List *ewk_context_menu_item_list_get( Ewk_Context_Menu *o)95 const Eina_List *ewk_context_menu_item_list_get(const Ewk_Context_Menu *o) 96 96 { 97 97 EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0); … … 143 143 } 144 144 145 Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get( Ewk_Context_Menu_Item *o)145 Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get(const Ewk_Context_Menu_Item *o) 146 146 { 147 147 EINA_SAFETY_ON_NULL_RETURN_VAL(o, EWK_ACTION_TYPE); … … 156 156 } 157 157 158 Ewk_Context_Menu_Action ewk_context_menu_item_action_get( Ewk_Context_Menu_Item *o)158 Ewk_Context_Menu_Action ewk_context_menu_item_action_get(const Ewk_Context_Menu_Item *o) 159 159 { 160 160 EINA_SAFETY_ON_NULL_RETURN_VAL(o, EWK_CONTEXT_MENU_ITEM_TAG_NO_ACTION); … … 169 169 } 170 170 171 const char *ewk_context_menu_item_title_get( Ewk_Context_Menu_Item *o)171 const char *ewk_context_menu_item_title_get(const Ewk_Context_Menu_Item *o) 172 172 { 173 173 EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0); … … 182 182 } 183 183 184 Eina_Bool ewk_context_menu_item_checked_get( Ewk_Context_Menu_Item *o)184 Eina_Bool ewk_context_menu_item_checked_get(const Ewk_Context_Menu_Item *o) 185 185 { 186 186 EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE); … … 195 195 } 196 196 197 Eina_Bool ewk_context_menu_item_enabled_get( Ewk_Context_Menu_Item *o)197 Eina_Bool ewk_context_menu_item_enabled_get(const Ewk_Context_Menu_Item *o) 198 198 { 199 199 EINA_SAFETY_ON_NULL_RETURN_VAL(o, EINA_FALSE); … … 302 302 * @see ewk_context_menu_item_list_get 303 303 */ 304 Ewk_Context_Menu *ewk_context_menu_custom_get( Ewk_Context_Menu *o)304 Ewk_Context_Menu *ewk_context_menu_custom_get(const Ewk_Context_Menu *o) 305 305 { 306 306 EINA_SAFETY_ON_NULL_RETURN_VAL(o, 0); … … 317 317 * @param o the context menu object 318 318 */ 319 void ewk_context_menu_show( Ewk_Context_Menu *o)319 void ewk_context_menu_show(const Ewk_Context_Menu *o) 320 320 { 321 321 EINA_SAFETY_ON_NULL_RETURN(o); -
trunk/Source/WebKit/efl/ewk/ewk_contextmenu.h
r94034 r94063 184 184 * @return the list of the items on success or @c 0 on failure 185 185 */ 186 EAPI const Eina_List *ewk_context_menu_item_list_get( Ewk_Context_Menu *o);186 EAPI const Eina_List *ewk_context_menu_item_list_get(const Ewk_Context_Menu *o); 187 187 188 188 /** … … 228 228 * @see ewk_context_menu_item_type_set 229 229 */ 230 EAPI Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get( Ewk_Context_Menu_Item *o);230 EAPI Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get(const Ewk_Context_Menu_Item *o); 231 231 232 232 /** … … 249 249 * @see ewk_context_menu_item_action_set 250 250 */ 251 EAPI Ewk_Context_Menu_Action ewk_context_menu_item_action_get( Ewk_Context_Menu_Item *o);251 EAPI Ewk_Context_Menu_Action ewk_context_menu_item_action_get(const Ewk_Context_Menu_Item *o); 252 252 253 253 /** … … 270 270 * @see ewk_context_menu_item_title_set 271 271 */ 272 EAPI const char *ewk_context_menu_item_title_get( Ewk_Context_Menu_Item *o);272 EAPI const char *ewk_context_menu_item_title_get(const Ewk_Context_Menu_Item *o); 273 273 274 274 /** … … 289 289 * @return @c EINA_TRUE if the item is toggled or @c EINA_FALSE if not or on failure 290 290 */ 291 EAPI Eina_Bool ewk_context_menu_item_checked_get( Ewk_Context_Menu_Item *o);291 EAPI Eina_Bool ewk_context_menu_item_checked_get(const Ewk_Context_Menu_Item *o); 292 292 293 293 /** … … 308 308 * @see ewk_context_menu_item_enabled_set 309 309 */ 310 EAPI Eina_Bool ewk_context_menu_item_enabled_get( Ewk_Context_Menu_Item *o);310 EAPI Eina_Bool ewk_context_menu_item_enabled_get(const Ewk_Context_Menu_Item *o); 311 311 312 312 /** -
trunk/Source/WebKit/efl/ewk/ewk_frame.cpp
r94034 r94063 526 526 } 527 527 528 Eina_Bool ewk_frame_text_matches_nth_pos_get( Evas_Object *o, size_t n, int *x, int *y)528 Eina_Bool ewk_frame_text_matches_nth_pos_get(const Evas_Object *o, size_t n, int *x, int *y) 529 529 { 530 530 EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 1056 1056 } 1057 1057 1058 Ewk_Text_Selection_Type ewk_frame_text_selection_type_get( Evas_Object *o)1058 Ewk_Text_Selection_Type ewk_frame_text_selection_type_get(const Evas_Object *o) 1059 1059 { 1060 1060 EWK_FRAME_SD_GET_OR_RETURN(o, sd, EWK_TEXT_SELECTION_NONE); … … 1493 1493 } 1494 1494 1495 ssize_t ewk_frame_source_get( Evas_Object *o, char **frame_source)1495 ssize_t ewk_frame_source_get(const Evas_Object *o, char **frame_source) 1496 1496 { 1497 1497 EWK_FRAME_SD_GET_OR_RETURN(o, sd, -1); … … 1543 1543 } 1544 1544 1545 Eina_List *ewk_frame_resources_location_get( Evas_Object *o)1545 Eina_List *ewk_frame_resources_location_get(const Evas_Object *o) 1546 1546 { 1547 1547 EWK_FRAME_SD_GET_OR_RETURN(o, sd, 0); -
trunk/Source/WebKit/efl/ewk/ewk_frame.h
r94034 r94063 423 423 * @a n is bigger than search results or on failure 424 424 */ 425 EAPI Eina_Bool ewk_frame_text_matches_nth_pos_get( Evas_Object *o, size_t n, int *x, int *y);425 EAPI Eina_Bool ewk_frame_text_matches_nth_pos_get(const Evas_Object *o, size_t n, int *x, int *y); 426 426 427 427 /** … … 773 773 * @return current text selection type on success or no selection otherwise 774 774 */ 775 EAPI Ewk_Text_Selection_Type ewk_frame_text_selection_type_get( Evas_Object *o);775 EAPI Ewk_Text_Selection_Type ewk_frame_text_selection_type_get(const Evas_Object *o); 776 776 777 777 /** … … 788 788 * @see ewk_frame_resources_location_get() 789 789 */ 790 EAPI ssize_t ewk_frame_source_get( Evas_Object *o, char **frame_source);790 EAPI ssize_t ewk_frame_source_get(const Evas_Object *o, char **frame_source); 791 791 792 792 /** … … 803 803 * @see ewk_frame_source_get() 804 804 */ 805 EAPI Eina_List *ewk_frame_resources_location_get( Evas_Object *o);805 EAPI Eina_List *ewk_frame_resources_location_get(const Evas_Object *o); 806 806 807 807 #ifdef __cplusplus -
trunk/Source/WebKit/efl/ewk/ewk_private.h
r93813 r94063 151 151 #if ENABLE(TOUCH_EVENTS) 152 152 void ewk_view_need_touch_events_set(Evas_Object*, bool needed); 153 Eina_Bool ewk_view_need_touch_events_get( Evas_Object*);153 Eina_Bool ewk_view_need_touch_events_get(const Evas_Object*); 154 154 #endif 155 155 … … 164 164 Eina_Bool ewk_context_menu_free(Ewk_Context_Menu *o); 165 165 void ewk_context_menu_item_append(Ewk_Context_Menu *o, WebCore::ContextMenuItem &core); 166 Ewk_Context_Menu *ewk_context_menu_custom_get( Ewk_Context_Menu *o);167 void ewk_context_menu_show( Ewk_Context_Menu *o);166 Ewk_Context_Menu *ewk_context_menu_custom_get(const Ewk_Context_Menu *o); 167 void ewk_context_menu_show(const Ewk_Context_Menu *o); 168 168 #endif 169 169 … … 213 213 void ewk_view_contents_size_changed(Evas_Object *o, Evas_Coord w, Evas_Coord h); 214 214 215 WebCore::FloatRect ewk_view_page_rect_get( Evas_Object *o);215 WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object *o); 216 216 217 217 const char* ewk_settings_default_user_agent_get(void); -
trunk/Source/WebKit/efl/ewk/ewk_view.cpp
r93833 r94063 1031 1031 } 1032 1032 1033 static WebCore::ViewportAttributes _ewk_view_viewport_attributes_compute( Evas_Object *o)1033 static WebCore::ViewportAttributes _ewk_view_viewport_attributes_compute(const Evas_Object *o) 1034 1034 { 1035 1035 EWK_VIEW_SD_GET(o, sd); … … 1138 1138 } 1139 1139 1140 void ewk_view_fixed_layout_size_get( Evas_Object *o, Evas_Coord *w, Evas_Coord *h)1140 void ewk_view_fixed_layout_size_get(const Evas_Object *o, Evas_Coord *w, Evas_Coord *h) 1141 1141 { 1142 1142 if (w) … … 1171 1171 } 1172 1172 1173 const char* ewk_view_theme_get( Evas_Object *o)1173 const char* ewk_view_theme_get(const Evas_Object *o) 1174 1174 { 1175 1175 EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0); … … 1756 1756 } 1757 1757 1758 unsigned int ewk_view_imh_get( Evas_Object *o)1758 unsigned int ewk_view_imh_get(const Evas_Object *o) 1759 1759 { 1760 1760 EWK_VIEW_SD_GET_OR_RETURN(o, sd, 0); … … 2102 2102 } 2103 2103 2104 Eina_Bool ewk_view_setting_encoding_detector_get( Evas_Object *o)2104 Eina_Bool ewk_view_setting_encoding_detector_get(const Evas_Object *o) 2105 2105 { 2106 2106 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 2109 2109 } 2110 2110 2111 Eina_Bool ewk_view_setting_enable_developer_extras_get( Evas_Object *o)2111 Eina_Bool ewk_view_setting_enable_developer_extras_get(const Evas_Object *o) 2112 2112 { 2113 2113 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 2296 2296 } 2297 2297 2298 Eina_Bool ewk_view_setting_spatial_navigation_get( Evas_Object *o)2298 Eina_Bool ewk_view_setting_spatial_navigation_get(const Evas_Object *o) 2299 2299 { 2300 2300 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 2315 2315 } 2316 2316 2317 Eina_Bool ewk_view_setting_local_storage_get( Evas_Object *o)2317 Eina_Bool ewk_view_setting_local_storage_get(const Evas_Object *o) 2318 2318 { 2319 2319 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 2334 2334 } 2335 2335 2336 Eina_Bool ewk_view_setting_page_cache_get( Evas_Object *o)2336 Eina_Bool ewk_view_setting_page_cache_get(const Evas_Object *o) 2337 2337 { 2338 2338 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 3444 3444 } 3445 3445 3446 void ewk_view_viewport_attributes_get( Evas_Object *o, float *w, float *h, float *init_scale, float *max_scale, float *min_scale, float *device_pixel_ratio, Eina_Bool *user_scalable)3446 void ewk_view_viewport_attributes_get(const Evas_Object *o, float *w, float *h, float *init_scale, float *max_scale, float *min_scale, float *device_pixel_ratio, Eina_Bool *user_scalable) 3447 3447 { 3448 3448 WebCore::ViewportAttributes attributes = _ewk_view_viewport_attributes_compute(o); … … 3480 3480 } 3481 3481 3482 float ewk_view_zoom_range_min_get( Evas_Object *o)3482 float ewk_view_zoom_range_min_get(const Evas_Object *o) 3483 3483 { 3484 3484 EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0); … … 3488 3488 } 3489 3489 3490 float ewk_view_zoom_range_max_get( Evas_Object *o)3490 float ewk_view_zoom_range_max_get(const Evas_Object *o) 3491 3491 { 3492 3492 EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0); … … 3506 3506 } 3507 3507 3508 Eina_Bool ewk_view_user_scalable_get( Evas_Object *o)3508 Eina_Bool ewk_view_user_scalable_get(const Evas_Object *o) 3509 3509 { 3510 3510 EWK_VIEW_SD_GET_OR_RETURN(o, sd, EINA_FALSE); … … 3514 3514 } 3515 3515 3516 float ewk_view_device_pixel_ratio_get( Evas_Object *o)3516 float ewk_view_device_pixel_ratio_get(const Evas_Object *o) 3517 3517 { 3518 3518 EWK_VIEW_SD_GET_OR_RETURN(o, sd, -1.0); … … 3639 3639 * @return page size. 3640 3640 */ 3641 WebCore::FloatRect ewk_view_page_rect_get( Evas_Object *o)3641 WebCore::FloatRect ewk_view_page_rect_get(const Evas_Object *o) 3642 3642 { 3643 3643 EWK_VIEW_SD_GET(o, sd); … … 3693 3693 } 3694 3694 3695 Ewk_View_Mode ewk_view_mode_get( Evas_Object *o)3695 Ewk_View_Mode ewk_view_mode_get(const Evas_Object *o) 3696 3696 { 3697 3697 Ewk_View_Mode mode = EWK_VIEW_MODE_WINDOWED; -
trunk/Source/WebKit/efl/ewk/ewk_view.h
r93833 r94063 546 546 * fixed layout in use 547 547 */ 548 EAPI void ewk_view_fixed_layout_size_get( Evas_Object *o, Evas_Coord *w, Evas_Coord *h);548 EAPI void ewk_view_fixed_layout_size_get(const Evas_Object *o, Evas_Coord *w, Evas_Coord *h); 549 549 550 550 /** … … 569 569 * @return the theme path, may be @c 0 if not set 570 570 */ 571 EAPI const char *ewk_view_theme_get( Evas_Object *o);571 EAPI const char *ewk_view_theme_get(const Evas_Object *o); 572 572 573 573 /** … … 1228 1228 * @return the input method hints as @a Ewk_Imh bits-field 1229 1229 */ 1230 EAPI unsigned int ewk_view_imh_get( Evas_Object *o);1230 EAPI unsigned int ewk_view_imh_get(const Evas_Object *o); 1231 1231 1232 1232 /** … … 1772 1772 * @c EINA_FALSE if not or on failure 1773 1773 */ 1774 EAPI Eina_Bool ewk_view_setting_spatial_navigation_get( Evas_Object *o);1774 EAPI Eina_Bool ewk_view_setting_spatial_navigation_get(const Evas_Object *o); 1775 1775 1776 1776 /** … … 1793 1793 * @c EINA_FALSE if not or on failure 1794 1794 */ 1795 EAPI Eina_Bool ewk_view_setting_local_storage_get( Evas_Object *o);1795 EAPI Eina_Bool ewk_view_setting_local_storage_get(const Evas_Object *o); 1796 1796 1797 1797 /** … … 1834 1834 * @c EINA_FALSE if not or on failure 1835 1835 */ 1836 EAPI Eina_Bool ewk_view_setting_page_cache_get( Evas_Object *o);1836 EAPI Eina_Bool ewk_view_setting_page_cache_get(const Evas_Object *o); 1837 1837 1838 1838 /** … … 1855 1855 * @c EINA_FALSE if not or on failure 1856 1856 */ 1857 EAPI Eina_Bool ewk_view_setting_encoding_detector_get( Evas_Object *o);1857 EAPI Eina_Bool ewk_view_setting_encoding_detector_get(const Evas_Object *o); 1858 1858 1859 1859 /** … … 1879 1879 * otherwise 1880 1880 */ 1881 EAPI Eina_Bool ewk_view_setting_enable_developer_extras_get( Evas_Object *o);1881 EAPI Eina_Bool ewk_view_setting_enable_developer_extras_get(const Evas_Object *o); 1882 1882 1883 1883 /** … … 2115 2115 * @param user_scalable the pointer to store if user can scale viewport 2116 2116 */ 2117 EAPI void ewk_view_viewport_attributes_get( Evas_Object *o, float *w, float *h, float *init_scale, float *max_scale, float *min_scale, float *device_pixel_ratio , Eina_Bool *user_scalable);2117 EAPI void ewk_view_viewport_attributes_get(const Evas_Object *o, float *w, float *h, float *init_scale, float *max_scale, float *min_scale, float *device_pixel_ratio , Eina_Bool *user_scalable); 2118 2118 2119 2119 /** … … 2136 2136 * @c -1 on failure 2137 2137 */ 2138 EAPI float ewk_view_zoom_range_min_get( Evas_Object *o);2138 EAPI float ewk_view_zoom_range_min_get(const Evas_Object *o); 2139 2139 2140 2140 /** … … 2146 2146 * @c -1.0 on failure 2147 2147 */ 2148 EAPI float ewk_view_zoom_range_max_get( Evas_Object *o);2148 EAPI float ewk_view_zoom_range_max_get(const Evas_Object *o); 2149 2149 2150 2150 /** … … 2165 2165 * @return @c EINA_TRUE if the zoom is enabled, @c EINA_FALSE if not or on failure 2166 2166 */ 2167 EAPI Eina_Bool ewk_view_user_scalable_get( Evas_Object *o);2167 EAPI Eina_Bool ewk_view_user_scalable_get(const Evas_Object *o); 2168 2168 2169 2169 /** … … 2174 2174 * @return the device pixel ratio value on success or @c -1.0 on failure 2175 2175 */ 2176 EAPI float ewk_view_device_pixel_ratio_get( Evas_Object *o);2176 EAPI float ewk_view_device_pixel_ratio_get(const Evas_Object *o); 2177 2177 2178 2178 /** … … 2198 2198 * @see ewk_view_mode_set() 2199 2199 */ 2200 EAPI Ewk_View_Mode ewk_view_mode_get( Evas_Object *o);2200 EAPI Ewk_View_Mode ewk_view_mode_get(const Evas_Object *o); 2201 2201 2202 2202 /** -
trunk/Source/WebKit/efl/ewk/ewk_window_features.cpp
r92473 r94063 55 55 } 56 56 57 void ewk_window_features_bool_property_get( Ewk_Window_Features *window_features, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visible, Eina_Bool *fullscreen)57 void ewk_window_features_bool_property_get(const Ewk_Window_Features *window_features, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visible, Eina_Bool *fullscreen) 58 58 { 59 59 EINA_SAFETY_ON_NULL_RETURN(window_features); … … 79 79 } 80 80 81 void ewk_window_features_int_property_get( Ewk_Window_Features *window_features, int *x, int *y, int *w, int *h)81 void ewk_window_features_int_property_get(const Ewk_Window_Features *window_features, int *x, int *y, int *w, int *h) 82 82 { 83 83 EINA_SAFETY_ON_NULL_RETURN(window_features); -
trunk/Source/WebKit/efl/ewk/ewk_window_features.h
r92473 r94063 68 68 * @see ewk_window_features_int_property_get 69 69 */ 70 EAPI void ewk_window_features_bool_property_get( Ewk_Window_Features *window_features, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visible, Eina_Bool *fullscreen);70 EAPI void ewk_window_features_bool_property_get(const Ewk_Window_Features *window_features, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visible, Eina_Bool *fullscreen); 71 71 72 72 /** … … 87 87 * @see ewk_window_features_bool_property_get 88 88 */ 89 EAPI void ewk_window_features_int_property_get( Ewk_Window_Features *window_features, int *x, int *y, int *w, int *h);89 EAPI void ewk_window_features_int_property_get(const Ewk_Window_Features *window_features, int *x, int *y, int *w, int *h); 90 90 91 91 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.