summaryrefslogtreecommitdiffstats
path: root/src/gui/image/qiconloader_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Do not crash when loading themed icons staticallyJens Bache-Wiig2010-03-041-0/+2
| | | | | | | | | | | | We do not officially support static loading of icons. In fact they still crash for simple png cases due to missing X11 resources. But since we lazily create themed icons we can certainly avoid the crash in this case. You will not be able to use fallbacks here though, since we cannot know if a fallback should be used or not in this case. Reviewed-by: ogoffart Task-number: QTBUG-8666
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Fix LIBRARY and ICONJørgen Lind2009-10-291-0/+3
| | | | | | However, compiling with QT_NO_ICON will still not work :( Reviewed-by: tom
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Removing a few superfluous semicolons.Alessandro Portale2009-09-031-1/+1
| | | | Reviewed-By: TrustMe
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Remove a few warnings when compiling Qt and unexport some functions.Thiago Macieira2009-08-201-0/+1
| | | | | | | | | | | Make some functions static that are not used anywhere but in the current file. Others that are used, add the declaration to the _p.h to ensure we don't forget about them. Finally, there's no need to enable debugging code if it's not used anywhere. Reviewed-by: TrustMe
* Eliminate last mentions of "Qt Software".Jason McDonald2009-08-121-1/+1
| | | | Reviewed-by: Trust Me
* Update contact URL in license headers.Jason McDonald2009-08-121-1/+1
| | | | Reviewed-by: Trust Me
* Make compile.Bill King2009-08-111-0/+1
|
* Introducing icon theme supportJens Bache-Wiig2009-08-101-0/+185
Added some static functions to QIcon to support desktop themes based on the freedesktop spec. It is not intended to replace KIcon and the intention is to use it when available to share icon cache between applications. Applications currently using icon themes are Assistant, Designer and the textedit demo. Reviewed-by: ogoffart