summaryrefslogtreecommitdiff
path: root/graphics/qslim/files
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/qslim/files')
-rw-r--r--graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx11
-rw-r--r--graphics/qslim/files/patch-mixkit__src__MxDynBlock.h29
-rw-r--r--graphics/qslim/files/patch-mixkit__src__MxStack.h31
-rw-r--r--graphics/qslim/files/patch-tools-qslim_qvis.cxx20
-rw-r--r--graphics/qslim/files/patch-tools__qslim__qslim.cxx11
5 files changed, 0 insertions, 102 deletions
diff --git a/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx b/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx
deleted file mode 100644
index a8bb5449016b..000000000000
--- a/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- mixkit/src/MxStdGUI.cxx.orig 2011-09-06 14:12:15.000000000 +0200
-+++ mixkit/src/MxStdGUI.cxx 2011-09-06 14:12:47.000000000 +0200
-@@ -15,7 +15,7 @@
- #include "MxGLUtils.h"
- #include "MxSMF.h"
- #include <FL/Fl_Color_Chooser.H>
--#include <FL/fl_file_chooser.H>
-+#include <FL/Fl_File_Chooser.H>
- #include <FL/filename.H>
-
-
diff --git a/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h b/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h
deleted file mode 100644
index 605e88e2befd..000000000000
--- a/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- mixkit/src/MxDynBlock.h.orig
-+++ mixkit/src/MxDynBlock.h
-@@ -35,13 +35,13 @@
-
- void room_for(int len)
- {
-- if( length()<len ) resize(len);
-+ if( length()<len ) this->resize(len);
- fill = len;
- }
-
- T& add()
- {
-- if( length()==total_space() ) resize(total_space() * 2);
-+ if( length()==total_space() ) this->resize(total_space() * 2);
- fill++;
- return last();
- }
-@@ -62,8 +62,8 @@
- //
- int size() const { return length(); }
-
-- typename MxBlock<T>::iterator end() { return begin()+size(); }
-- typename MxBlock<T>::const_iterator end() const { return begin()+size(); }
-+ typename MxBlock<T>::iterator end() { return this->begin()+size(); }
-+ typename MxBlock<T>::const_iterator end() const { return this->begin()+size(); }
-
- void push_back(const T& t) { add(t); }
- };
diff --git a/graphics/qslim/files/patch-mixkit__src__MxStack.h b/graphics/qslim/files/patch-mixkit__src__MxStack.h
deleted file mode 100644
index 3368a868c4a4..000000000000
--- a/graphics/qslim/files/patch-mixkit__src__MxStack.h
+++ /dev/null
@@ -1,31 +0,0 @@
---- mixkit/src/MxStack.h.orig
-+++ mixkit/src/MxStack.h
-@@ -26,14 +26,14 @@
- MxStack(const T& val, unsigned int n) : MxDynBlock<T>(n)
- { push(val); }
-
-- T& top() { return last(); }
-- const T& top() const { return last(); }
-+ T& top() { return this->last(); }
-+ const T& top() const { return this->last(); }
-
-- bool is_empty() { return length()==0; }
-+ bool is_empty() { return this->length()==0; }
-
-- T& pop() { return drop(); }
-+ T& pop() { return this->drop(); }
-
-- void push(const T& val) { add(val); }
-+ void push(const T& val) { this->add(val); }
- //
- // NOTE: In this code, it is *crucial* that we do the add() and
- // assignment in separate steps. The obvious alternative
-@@ -41,7 +41,7 @@
- // broken! The top() will grab a pointer into the block,
- // but the add() may reallocate the block before doing the
- // assignment. Thus, the pointer will become invalid.
-- void push() { add(); top() = (*this)[length()-2]; }
-+ void push() { this->add(); top() = (*this)[this->length()-2]; }
- };
-
- // MXSTACK_INCLUDED
diff --git a/graphics/qslim/files/patch-tools-qslim_qvis.cxx b/graphics/qslim/files/patch-tools-qslim_qvis.cxx
deleted file mode 100644
index 7c1b7390dc5b..000000000000
--- a/graphics/qslim/files/patch-tools-qslim_qvis.cxx
+++ /dev/null
@@ -1,20 +0,0 @@
---- tools/qslim/qvis.cxx.orig 2011-09-06 14:13:35.000000000 +0200
-+++ tools/qslim/qvis.cxx 2011-09-06 14:14:02.000000000 +0200
-@@ -14,7 +14,7 @@
- #include <MxStdGUI.h>
- #include <stdio.h>
-
--#include <FL/fl_file_chooser.H>
-+#include <FL/Fl_File_Chooser.H>
- #include <FL/filename.H>
- #include <FL/filename.H>
- #include <FL/Fl_Slider.H>
-@@ -228,7 +228,7 @@
- // Main application routine
- //
-
--main(int argc, char **argv)
-+int main(int argc, char **argv)
- {
- // Change default values for application variables in GUI version
- will_record_history = true;
diff --git a/graphics/qslim/files/patch-tools__qslim__qslim.cxx b/graphics/qslim/files/patch-tools__qslim__qslim.cxx
deleted file mode 100644
index 040e35c6fc30..000000000000
--- a/graphics/qslim/files/patch-tools__qslim__qslim.cxx
+++ /dev/null
@@ -1,11 +0,0 @@
---- tools/qslim/qslim.cxx.orig
-+++ tools/qslim/qslim.cxx
-@@ -32,7 +32,7 @@
- output_preamble();
- }
-
--main(int argc, char **argv)
-+int main(int argc, char **argv)
- {
- double input_time, init_time, slim_time, output_time;
-