1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-05 15:55:45 +00:00

Remove an unused member variable

This commit is contained in:
scrawl 2014-09-07 02:41:27 +02:00
parent f59c7fcb36
commit d6bc50c492
2 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@ namespace MWGui
TravelWindow::TravelWindow() : TravelWindow::TravelWindow() :
WindowBase("openmw_travel_window.layout") WindowBase("openmw_travel_window.layout")
, mCurrentY(0) , mCurrentY(0)
, mLastPos(0)
{ {
setCoord(0, 0, 450, 300); setCoord(0, 0, 450, 300);

View File

@ -39,7 +39,7 @@ namespace MWGui
void onMouseWheel(MyGUI::Widget* _sender, int _rel); void onMouseWheel(MyGUI::Widget* _sender, int _rel);
void addDestination(const std::string& name, ESM::Position pos, bool interior); void addDestination(const std::string& name, ESM::Position pos, bool interior);
void clearDestinations(); void clearDestinations();
int mLastPos,mCurrentY; int mCurrentY;
static const int sLineHeight; static const int sLineHeight;