(svn r23532) -Codechange: unify widget naming of (extra) viewport

This commit is contained in:
rubidium
2011-12-16 16:29:53 +00:00
parent e9f584ac21
commit b6a303387c
2 changed files with 22 additions and 22 deletions

View File

@@ -13,13 +13,13 @@
#define WIDGETS_VIEWPORT_WIDGET_H
/** Widgets of the WC_EXTRA_VIEW_PORT. */
enum ExtraViewportWindowWidgets {
EVW_CAPTION,
EVW_VIEWPORT,
EVW_ZOOMIN,
EVW_ZOOMOUT,
EVW_MAIN_TO_VIEW,
EVW_VIEW_TO_MAIN,
enum ExtraViewportWidgets {
WID_EV_CAPTION, ///< Caption of window.
WID_EV_VIEWPORT, ///< The viewport.
WID_EV_ZOOM_IN, ///< Zoom in.
WID_EV_ZOOM_OUT, ///< Zoom out.
WID_EV_MAIN_TO_VIEW, ///< Center the view of this viewport on the main view.
WID_EV_VIEW_TO_MAIN, ///< Center the main view on the view of this viewport.
};
#endif /* WIDGETS_VIEWPORT_WIDGET_H */