Removed /install/gtk/configure from cvs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-08-05 16:33:18 +00:00
parent baeed2892d
commit 54ff4a701f
13 changed files with 127 additions and 6980 deletions

View File

@@ -58,14 +58,13 @@ ScoreCanvas::ScoreCanvas(wxWindow* parent, ScoreFile* scoreFile) :
m_font = wxTheFontList->FindOrCreateFont(10, wxSWISS, wxNORMAL, wxNORMAL);
#endif
wxString* players = 0;
int length = 0;
scoreFile->GetPlayerList(&players, length);
wxArrayString players;
scoreFile->GetPlayerList( players);
ostrstream os;
os << "Player\tWins\tGames\tScore\n";
for (int i = 0; i < length; i++)
for (int i = 0; i < players.Count(); i++)
{
int wins, games, score;
scoreFile->ReadPlayersScore(players[i], wins, games, score);
@@ -84,7 +83,6 @@ ScoreCanvas::ScoreCanvas(wxWindow* parent, ScoreFile* scoreFile) :
char* str = os.str();
m_text = str;
delete str;
delete players;
}
ScoreCanvas::~ScoreCanvas()