Changeset 145


Ignore:
Timestamp:
01/17/2008 09:02:37 PM (4 years ago)
Author:
guyru
Message:

fixed bug #1836473 (wrong title caption)

Location:
branches/openyahtzee-1.8
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/openyahtzee-1.8/src/MainFrame.cpp

    r144 r145  
    593593        } 
    594594        else  
    595                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    596596} 
    597597 
     
    603603{ 
    604604        if(m_rolls>=3) { 
    605                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    606606                return; 
    607607        } 
     
    634634{ 
    635635        if(m_rolls>=3) { 
    636                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    637637                return; 
    638638        } 
     
    665665{ 
    666666        if(m_rolls>=3) { 
    667                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    668668                return; 
    669669        } 
     
    694694{ 
    695695        if(m_rolls>=3) { 
    696                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    697697                return; 
    698698        } 
     
    720720{ 
    721721        if(m_rolls>=3) { 
    722                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    723723                return; 
    724724        } 
     
    745745{ 
    746746        if(m_rolls>=3) { 
    747                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    748748                return; 
    749749        } 
     
    777777        } 
    778778        else  
    779                 wxMessageBox(wxT("First you need to roll, and after you roll you may score"), wxT("OpenYahtzee"), 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); 
    780780 
    781781} 
  • branches/openyahtzee-1.8/src/UtilityFunctions.cpp

    r85 r145  
    8282                        ::wxExecute(path); 
    8383                } else { 
    84                         wxMessageBox(wxT("No browser has been found."),wxT("OpenYahtzee")); 
     84                        wxMessageBox(wxT("No browser has been found."),wxT("Open Yahtzee")); 
    8585                } 
    8686        } 
  • branches/openyahtzee-1.8/src/openyahtzee.cpp

    r92 r145  
    5858 
    5959        // Create the main application window 
    60         MainFrame *frame = new MainFrame(wxT("OpenYahtzee"), wxDefaultSize, wxDEFAULT_FRAME_STYLE & (~wxRESIZE_BORDER)); 
     60        MainFrame *frame = new MainFrame(wxT("Open Yahtzee"), wxDefaultSize, wxDEFAULT_FRAME_STYLE & (~wxRESIZE_BORDER)); 
    6161         
    6262        //Show it 
Note: See TracChangeset for help on using the changeset viewer.