summaryrefslogtreecommitdiffstats
path: root/src/resourcemgr.h
Commit message (Collapse)AuthorAgeFilesLines
* Some fixes for template.cpp and improve the template outputDimitri van Heesch2021-05-141-1/+1
|
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-5/+5
| | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()'
* Refactoring: make qcstring.h a local includeDimitri van Heesch2021-03-261-1/+1
|
* Modernize code for the resource managerDimitri van Heesch2020-08-021-2/+5
|
* Replaced bitmap of doxygen logo by SVG versionDimitri van Heesch2020-07-181-1/+1
|
* Added generating template files and reading templates from disk if presentDimitri van Heesch2016-05-281-2/+2
|
* Avoid using Resource::data as string, as it is not null terminated.Dimitri van Heesch2015-08-311-3/+3
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Introduced template directory for template and resource files and resource ↵Dimitri van Heesch2014-11-131-0/+63
compiler & manager