positioningItem => positioning_item

This commit is contained in:
Cheng Zhao 2016-01-22 10:51:51 -07:00
parent ea9b0cfed0
commit 360266ba5b
5 changed files with 12 additions and 11 deletions

View file

@ -52,8 +52,9 @@ class Menu : public mate::TrackableObject<Menu>,
void MenuWillShow(ui::SimpleMenuModel* source) override;
virtual void Popup(Window* window) = 0;
virtual void PopupAt(Window* window, int x, int y,
int positioningItem = 0) = 0;
virtual void PopupAt(Window* window,
int x = -1, int y = -1,
int positioning_item = 0) = 0;
scoped_ptr<AtomMenuModel> model_;
Menu* parent_;