James Vasile:

Patch for building with qt4.4
	Added note about qmake to README



git-svn-id: http://svn.clifford.at/openscad/trunk@177 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
clifford 2009-12-16 08:41:35 +00:00
parent a3ac483b6a
commit 19a22fbfc4
2 changed files with 7 additions and 0 deletions

5
README
View File

@ -62,6 +62,11 @@ may not work as well..
http://flex.sourceforge.net/
BUILDING OPENSCAD
================
First, run qmake to generate a Makefile. Then run make.
DOCUMENTATION
=============

View File

@ -648,7 +648,9 @@ void MainWindow::updateRecentFileActions()
int originalNumRecentFiles = files.size();
// Remove any duplicate or empty entries from the list
#if (QT_VERSION >= QT_VERSION_CHECK(4, 5, 0))
files.removeDuplicates();
#endif
files.removeAll(QString());
// Now remove any entries which do not exist
for(int i = files.size()-1; i >= 0; --i) {