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:
parent
f59c7fcb36
commit
d6bc50c492
@ -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);
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user