Changeset 173 in tspsg-svn
- Timestamp:
- May 30, 2011, 11:33:23 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/dox/changelog.dox
r170 r173 1 1 /*! \page changelog TSPSG ChangeLog 2 2 3 \author Copyright © 2007-201 0Lёppa <contacts[at]oleksii[dot]name>3 \author Copyright © 2007-2011 Lёppa <contacts[at]oleksii[dot]name> 4 4 $Id$ 5 5 $URL$ -
trunk/docs/dox/install.dox
r145 r173 1 1 /*! \page install TSPSG Installation Guide 2 2 3 \author Copyright © 2007-201 0Lёppa <contacts[at]oleksii[dot]name>3 \author Copyright © 2007-2011 Lёppa <contacts[at]oleksii[dot]name> 4 4 $Id$ 5 5 $URL$ -
trunk/docs/dox/mainpage.dox
r170 r173 7 7 \image html tspsg.png 8 8 <b>TSPSG: TSP Solver and Generator</b> 9 \author Copyright © 2007-201 0Lёppa <contacts[at]oleksii[dot]name>9 \author Copyright © 2007-2011 Lёppa <contacts[at]oleksii[dot]name> 10 10 11 11 \b Homepage: <a href="http://tspsg.info/">tspsg.info</a> -
trunk/src/qtwin.cpp
r150 r173 15 15 #include <QPointer> 16 16 17 #ifdef Q_WS_X11 18 #include <QX11Info> 19 #endif // Q_WS_X11 20 17 21 #ifdef Q_WS_WIN 18 22 … … 104 108 } 105 109 return false; 106 #elif !defined(HANDHELD) 110 #elif defined(Q_WS_X11) 111 return QX11Info::isCompositingManagerRunning(); 112 #else 107 113 //! \todo TODO: Check for trsnsparency support in other OSes. 108 return true;109 #else110 114 return false; 111 115 #endif
Note: See TracChangeset
for help on using the changeset viewer.