summaryrefslogtreecommitdiffstats
path: root/src/resource-manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move some files to 'io' directory.Tavmjong Bah2018-10-131-445/+0
|
* Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-181-3/+3
| | | | | This reduces the boilerplate required to add a new element to a container.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-4/+2
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-5/+5
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-5/+5
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-2/+5
| | | | A lot of header clean-up.
* Misc. typosUnknown2017-11-071-3/+3
| | | | | | | | | | | | Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
* Avoid crash when opening files containing hrefs with invalid "file:" URIsEduard Braun2017-01-311-26/+66
| | | | | | | | | | | Also some improvements for "resource-manager.cpp": - implement mechanism to attmept to reconstruct filename from invalid hrefs (currently implemented: relative "file:" URIs which are non-standard but not uncommon) - typo in a Glib::file_test that probably made Inkscape re-evaluate relative references - fixed paths where not always properly converted to relative paths. Fixed bugs: - https://launchpad.net/bugs/1660142 (bzr r15461)
* Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-4/+2
| | | (bzr r15034)
* Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-1/+6
| | | (bzr r15027)
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-6/+1
| | | (bzr r15025)
* Fix regression: restore order in resources (e.g. pattern list)Marc Jeanmougin2016-05-211-4/+4
| | | (bzr r14907)
* cppification : GHashMaps replaced by stl maps. getResouceList now gives a ↵Marc Jeanmougin2015-12-071-7/+7
| | | | | | | std::set<SPObject *>. Should give some performance improvements (quite a few linear lookups are now logarithmic) (bzr r14504.1.6)
* Crash. Fix for Bug #1404934 (Crash when opening files (Glib::ConvertError ↵Riccardo Bernardini2015-10-031-5/+9
| | | | | | | | exception)). Fixed bugs: - https://launchpad.net/bugs/1404934 (bzr r14393)
* Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis2013-03-251-1/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
* code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton2012-10-041-2/+2
| | | | | they are not used elsewhere. (bzr r11735)
* Header cleaningAlex Valavanis2012-02-121-0/+3
| | | (bzr r10963)
* Fix fallback to MRU locations.Jon A. Cruz2011-05-111-20/+36
| | | (bzr r10207)
* Convert fixed paths to relative, including ..Jon A. Cruz2011-05-101-0/+75
| | | (bzr r10205)
* Added simple usage of most recent file locations.Jon A. Cruz2011-05-101-4/+40
| | | (bzr r10204)
* Adding initial cut of resource manager.Jon A. Cruz2011-05-061-0/+272
(bzr r10198)