Windows build fix

This commit is contained in:
Mark Watkins 2015-08-27 14:00:58 +10:00
parent 4eeefba2c5
commit b6cf8195f1
2 changed files with 2 additions and 1 deletions

View File

@ -1278,6 +1278,7 @@ void gGraphView::paintGL()
// Create QPainter object, note this is only valid from paintGL events!
QPainter painter(this);
painter.setRenderHint(QPainter::HighQualityAntialiasing, true);
painter.setRenderHint(QPainter::TextAntialiasing, true);

View File

@ -424,10 +424,10 @@ QString Environment::searchInPath(const QString &executable, const QStringList &
// Borrowed from QtCreator (http://stackoverflow.com/questions/3490336/how-to-reveal-in-finder-or-show-in-explorer-with-qt)
void showInGraphicalShell(const QString & pathIn)
{
//QWidget * parent = NULL;
// Mac, Windows support folder or file.
#if defined(Q_OS_WIN)
QWidget * parent = NULL;
Environment env;
const QString explorer = env.searchInPath(QLatin1String("explorer.exe"));
if (explorer.isEmpty()) {