Changeset 145
- Timestamp:
- 01/17/2008 09:02:37 PM (4 years ago)
- Location:
- branches/openyahtzee-1.8
- Files:
-
- 1 deleted
- 3 edited
-
Makefile.cvs (deleted)
-
src/MainFrame.cpp (modified) (8 diffs)
-
src/UtilityFunctions.cpp (modified) (1 diff)
-
src/openyahtzee.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/openyahtzee-1.8/src/MainFrame.cpp
r144 r145 593 593 } 594 594 else 595 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);595 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 596 596 } 597 597 … … 603 603 { 604 604 if(m_rolls>=3) { 605 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);605 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 606 606 return; 607 607 } … … 634 634 { 635 635 if(m_rolls>=3) { 636 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);636 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 637 637 return; 638 638 } … … 665 665 { 666 666 if(m_rolls>=3) { 667 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);667 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 668 668 return; 669 669 } … … 694 694 { 695 695 if(m_rolls>=3) { 696 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);696 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 697 697 return; 698 698 } … … 720 720 { 721 721 if(m_rolls>=3) { 722 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);722 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 723 723 return; 724 724 } … … 745 745 { 746 746 if(m_rolls>=3) { 747 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);747 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 748 748 return; 749 749 } … … 777 777 } 778 778 else 779 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this);779 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("Open Yahtzee"), wxOK | wxICON_INFORMATION, this); 780 780 781 781 } -
branches/openyahtzee-1.8/src/UtilityFunctions.cpp
r85 r145 82 82 ::wxExecute(path); 83 83 } else { 84 wxMessageBox(wxT("No browser has been found."),wxT("Open Yahtzee"));84 wxMessageBox(wxT("No browser has been found."),wxT("Open Yahtzee")); 85 85 } 86 86 } -
branches/openyahtzee-1.8/src/openyahtzee.cpp
r92 r145 58 58 59 59 // Create the main application window 60 MainFrame *frame = new MainFrame(wxT("Open Yahtzee"), wxDefaultSize, wxDEFAULT_FRAME_STYLE & (~wxRESIZE_BORDER));60 MainFrame *frame = new MainFrame(wxT("Open Yahtzee"), wxDefaultSize, wxDEFAULT_FRAME_STYLE & (~wxRESIZE_BORDER)); 61 61 62 62 //Show it
Note: See TracChangeset
for help on using the changeset viewer.
