mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:53:51 +00:00
Remove an unused member variable
This commit is contained in:
parent
f59c7fcb36
commit
d6bc50c492
2 changed files with 1 additions and 2 deletions
|
@ -26,7 +26,6 @@ namespace MWGui
|
|||
TravelWindow::TravelWindow() :
|
||||
WindowBase("openmw_travel_window.layout")
|
||||
, mCurrentY(0)
|
||||
, mLastPos(0)
|
||||
{
|
||||
setCoord(0, 0, 450, 300);
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ namespace MWGui
|
|||
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
||||
void addDestination(const std::string& name, ESM::Position pos, bool interior);
|
||||
void clearDestinations();
|
||||
int mLastPos,mCurrentY;
|
||||
int mCurrentY;
|
||||
|
||||
static const int sLineHeight;
|
||||
|
||||
|
|
Loading…
Reference in a new issue