From c1a8004af263b5b9a6a4dce5502dcdfda7ed23d0 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Fri, 22 Dec 2017 16:20:23 +0100 Subject: games-board/openyahtzee: remove unused patch --- .../files/openyahtzee-1.9.2-wx3.0.patch | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100644 games-board/openyahtzee/files/openyahtzee-1.9.2-wx3.0.patch (limited to 'games-board/openyahtzee') diff --git a/games-board/openyahtzee/files/openyahtzee-1.9.2-wx3.0.patch b/games-board/openyahtzee/files/openyahtzee-1.9.2-wx3.0.patch deleted file mode 100644 index 485a14c9ceeb..000000000000 --- a/games-board/openyahtzee/files/openyahtzee-1.9.2-wx3.0.patch +++ /dev/null @@ -1,67 +0,0 @@ -From: Guy Rutenberg -Date: Sat, 25 Oct 2014 15:33:42 +0200 -Subject: wxstrtol - -Fixes a FTBFS with recent versions of wx3.0. ---- - src/MainFrame.cpp | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/src/MainFrame.cpp b/src/MainFrame.cpp -index 2128376..8e29d6d 100644 ---- a/src/MainFrame.cpp -+++ b/src/MainFrame.cpp -@@ -510,7 +510,7 @@ void MainFrame::OnUndo(wxCommandEvent& event) - wxString tempstr; - - tempstr = ((wxTextCtrl*) FindWindow(ID_YAHTZEEBONUSTEXT)) -> GetValue(); -- tempstr.Printf(wxT("%li"), wxStrtol(tempstr, NULL, 10) - 100); -+ tempstr.Printf(wxT("%li"), strtol(tempstr.mb_str(), NULL, 10) - 100); - ((wxTextCtrl*) FindWindow(ID_YAHTZEEBONUSTEXT)) -> SetValue(tempstr); - } - -@@ -936,7 +936,7 @@ void MainFrame::YahtzeeBonus() - return; - if (m_score_dice.IsYahtzee()) { - tempstr = ((wxTextCtrl*) FindWindow(ID_YAHTZEEBONUSTEXT)) -> GetValue(); -- tempstr.Printf(wxT("%li"), wxStrtol(tempstr, NULL, 10) + 100); -+ tempstr.Printf(wxT("%li"), strtol(tempstr.mb_str(), NULL, 10) + 100); - ((wxTextCtrl*) FindWindow(ID_YAHTZEEBONUSTEXT)) -> SetValue(tempstr); - m_yahtzeebonus = true; - } -@@ -973,7 +973,7 @@ void MainFrame::EndofGame() - - for (int i = ID_ACESTEXT; i<=ID_SIXESTEXT; i++){ - tempstr = ((wxTextCtrl*) FindWindow(i)) -> GetValue(); -- upperscore += wxStrtol(tempstr, NULL, 10); -+ upperscore += strtol(tempstr.mb_str(), NULL, 10); - } - - tempstr.Printf(wxT("%li"),upperscore); -@@ -992,7 +992,7 @@ void MainFrame::EndofGame() - //calculate total on lower section - for (int i = ID_THREEOFAKINDTEXT; i<=ID_YAHTZEEBONUSTEXT; i++) { - tempstr = ((wxTextCtrl*) FindWindow(i)) -> GetValue(); -- lowerscore += wxStrtol(tempstr, NULL, 10); -+ lowerscore += strtol(tempstr.mb_str(), NULL, 10); - } - - tempstr.Printf(wxT("%li"),lowerscore); -@@ -1091,7 +1091,7 @@ void MainFrame::CalculateSubTotal() - - for (int i = ID_ACESTEXT; i<=ID_SIXESTEXT; i++){ - tempstr = ((wxTextCtrl*) FindWindow(i)) -> GetValue(); -- upperscore += wxStrtol(tempstr, NULL, 10); -+ upperscore += strtol(tempstr.mb_str(), NULL, 10); - } - - tempstr.Printf(wxT("%li"),upperscore); -@@ -1105,7 +1105,7 @@ void MainFrame::CalculateSubTotal() - - for (int i = ID_THREEOFAKINDTEXT; i<=ID_YAHTZEEBONUSTEXT; i++) { - tempstr = ((wxTextCtrl*) FindWindow(i)) -> GetValue(); -- lowerscore += wxStrtol(tempstr, NULL, 10); -+ lowerscore += strtol(tempstr.mb_str(), NULL, 10); - } - - tempstr.Printf(wxT("%li"),lowerscore); -- cgit v1.2.3-65-gdbad