Ignore:
Timestamp:
05/04/2007 07:30:35 PM (5 years ago)
Author:
guyru
Message:

Patched source-code for portable edition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/openyahtzee1.7PE/src/MainFrame.cpp

    r59 r79  
    278278        wxString msg; 
    279279        wxString sqliteversion = wxString(sqlite3_version,wxConvUTF8); 
    280         msg.Printf(wxT("Open Yahtzee %s\nCopyright (C) 2006 by Guy Rutenberg.\nDice design by Seamus McGill\n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nOpen Yahtzee was built against:\nwxWidgets %i.%i\n"),wxT(OY_VERSION),wxMAJOR_VERSION,wxMINOR_VERSION); 
     280        msg.Printf(wxT("Open Yahtzee %s Portable Edition\nCopyright (C) 2006 by Guy Rutenberg.\nDice design by Seamus McGill\n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nOpen Yahtzee was built against:\nwxWidgets %i.%i\n"),wxT(OY_VERSION),wxMAJOR_VERSION,wxMINOR_VERSION); 
    281281        msg += wxT("SQLite ") + sqliteversion; 
    282282                 
    283         wxMessageBox(msg, wxT("About Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 
     283        wxMessageBox(msg, wxT("About Open Yahtzee PE"), wxOK | wxICON_INFORMATION, this); 
    284284} 
    285285 
     
    308308void MainFrame::OnNewGame(wxCommandEvent& event) 
    309309{ 
     310        //disable the undo button so it won't be enabled when a new game is started. 
     311        (GetMenuBar()->FindItem(ID_UNDO))->Enable(false); 
    310312 
    311313        ResetRolls(); 
Note: See TracChangeset for help on using the changeset viewer.