1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-03 13:01:33 +02:00

update automake file

This commit is contained in:
Vadim Glazunov 2008-09-10 19:06:23 +00:00
parent 11cef89810
commit df03f4ef78
2 changed files with 5 additions and 2 deletions

View File

@ -53,7 +53,8 @@ CSpellWindow::CSpellWindow(const SDL_Rect & myRect, const CGHeroInstance * myHer
schoolF = CDefHandler::giveDef("SplevF.def");
schoolA = CDefHandler::giveDef("SplevA.def");
exitBtn = new ClickableArea(genRect(45, 35, 569, 407), boost::bind(&CSpellWindow::fexitb, this));
SDL_Rect temp_rect = genRect(45, 35, 569, 407);
exitBtn = new ClickableArea(temp_rect, boost::bind(&CSpellWindow::fexitb, this));
statusBar = new CStatusBar(97, 571, "Spelroll.bmp");
}

View File

@ -37,6 +37,7 @@ vcmiclient_SOURCES = \
../mapHandler.cpp \
../SDL_Extensions.cpp \
../SDL_framerate.cpp \
./CSpellWindow.cpp \
../AdventureMapButton.h \
../AI_Base.h \
../hch/CAbilityHandler.h \
@ -79,4 +80,5 @@ vcmiclient_SOURCES = \
../SDL_framerate.h \
../StartInfo.h \
../stdafx.h \
../timeHandler.h
../timeHandler.h \
./CSpellWindow.h