removed unused variable

This commit is contained in:
ZappoMan 2013-12-12 11:01:37 -08:00
parent e1b3b9d967
commit 28c5d5b7bf
2 changed files with 1 additions and 4 deletions

View file

@ -139,8 +139,7 @@ Application::Application(int& argc, char** argv, timeval &startup_time) :
_recentMaxPackets(0),
_resetRecentMaxPacketsSoon(true),
_swatch(NULL),
_pasteMode(false),
_nextCreatorTokenID(0)
_pasteMode(false)
{
_applicationStartupTime = startup_time;
_window->setWindowTitle("Interface");

View file

@ -491,8 +491,6 @@ private:
std::vector<VoxelFade> _voxelFades;
std::vector<Avatar*> _avatarFades;
uint32_t _nextCreatorTokenID;
};
#endif /* defined(__interface__Application__) */