Skip to content

Commit

Permalink
Missing right implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselli committed Jun 28, 2020
1 parent 33e6116 commit 7298767
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SET(VERSION_MAJOR "1")
SET(VERSION_MINOR "0")
SET(VERSION_PATCH "9")
SET(VERSION_MINOR "1")
SET(VERSION_PATCH "0")
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )

##### This is need for the libyui core, ONLY.
Expand Down
4 changes: 2 additions & 2 deletions src/YMGAWidgetExtensionFactory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ YTimeoutEvent* YMGAWidgetFactory::getYTimeoutEvent(YEvent *event)
return dynamic_cast<YTimeoutEvent*>(event);
}

YMGAMenuItem* toYMGAMenuItem( YItem* item )
YMGAMenuItem* YMGAWidgetFactory::toYMGAMenuItem( YItem* item )
{
return dynamic_cast<YMGAMenuItem*>(item);
}

YMenuSeparator* toYMenuSeparator( YItem* item )
YMenuSeparator* YMGAWidgetFactory::toYMenuSeparator( YItem* item )
{
return dynamic_cast<YMenuSeparator*>(item);
}
Expand Down

0 comments on commit 7298767

Please sign in to comment.