diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-03-18 02:25:34 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-03-18 02:25:34 +0100 |
commit | c50beef08d80ff3caaf68951f1d0b3843182a4f1 (patch) | |
tree | ff0ce343fb3cce8c222c6077bfb1320457425b01 /freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff | |
parent | ef2bc56fd3d1478d216ab499f9801610cec61a0f (diff) | |
download | tde-packaging-c50beef08d80ff3caaf68951f1d0b3843182a4f1.tar.gz tde-packaging-c50beef08d80ff3caaf68951f1d0b3843182a4f1.zip |
FreeBSD: Update for final release R14.0.6
Add ports for bunch of applications.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff')
-rw-r--r-- | freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff b/freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff deleted file mode 100644 index b8fd21342..000000000 --- a/freebsd/tdeedu/files/patch-bp001-fix-ftbfs-on-c++11.diff +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/kmplot/kmplot/xparser.cpp b/kmplot/kmplot/xparser.cpp -index acf7ecdb..4ab4300f 100644 ---- a/kmplot/kmplot/xparser.cpp -+++ b/kmplot/kmplot/xparser.cpp -@@ -521,7 +521,7 @@ TQString XParser::functionMinValue(uint id) - { - int const ix = ixValue(id); - if (ix==-1) -- return int(); -+ return TQString(); - return ufkt[ix].str_dmin; - } - -@@ -539,7 +539,7 @@ TQString XParser::functionMaxValue(uint id) - { - int const ix = ixValue(id); - if (ix==-1) -- return int(); -+ return TQString(); - return ufkt[ix].str_dmax; - } - -@@ -557,7 +557,7 @@ TQString XParser::functionStartXValue(uint id) - { - int const ix = ixValue(id); - if (ix==-1) -- return int(); -+ return TQString(); - return ufkt[ix].str_startx; - } - -@@ -575,7 +575,7 @@ TQString XParser::functionStartYValue(uint id) - { - int const ix = ixValue(id); - if (ix==-1) -- return int(); -+ return TQString(); - return ufkt[ix].str_starty; - } - |