summaryrefslogtreecommitdiffstats
path: root/src/io/resource-manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-28Update pofilesMarc Jeanmougin1-2/+1
2019-05-22Remove ResourceManager dep on Glib::object.Shlomi Fish1-1/+0
As suggested in http://wiki.inkscape.org/wiki/index.php?title=Refactoring_projects&oldid=112116 . Needs review but seems to work well.
2019-04-04Reorganize document.h.Tavmjong Bah1-0/+1
2019-03-15Make InkscapeApplication responsible for managing documents and windows.Tavmjong Bah1-1/+6
Any change from previous behavior is a bug.
2019-02-20Give more descriptive names to document file related variables and functions.Tavmjong Bah1-3/+3
Makes searching through code for them easier.
2019-01-02modernize loopsMarc Jeanmougin1-5/+5
2018-11-08Clarify licensesMax Gaukler1-1/+2
- add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
2018-10-13Move some files to 'io' directory.Tavmjong Bah1-0/+0
2018-06-18Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot1-3/+3
This reduces the boilerplate required to add a new element to a container.
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-4/+2
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-2/+2
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-18Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot1-2/+2
This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-5/+5
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-5/+5
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-2/+5
A lot of header clean-up.
2017-11-07Misc. typosUnknown1-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 ```
2017-01-31Avoid crash when opening files containing hrefs with invalid "file:" URIsEduard Braun1-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)
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-4/+2
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-1/+6
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-6/+1
(bzr r15025)
2016-05-21Fix regression: restore order in resources (e.g. pattern list)Marc Jeanmougin1-4/+4
(bzr r14907)
2015-12-07cppification : GHashMaps replaced by stl maps. getResouceList now gives a ↵Marc Jeanmougin1-7/+7
std::set<SPObject *>. Should give some performance improvements (quite a few linear lookups are now logarithmic) (bzr r14504.1.6)
2015-10-03Crash. Fix for Bug #1404934 (Crash when opening files (Glib::ConvertError ↵Riccardo Bernardini1-5/+9
exception)). Fixed bugs: - https://launchpad.net/bugs/1404934 (bzr r14393)
2013-03-25Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis1-1/+1
Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
2012-10-04code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton1-2/+2
they are not used elsewhere. (bzr r11735)
2012-02-12Header cleaningAlex Valavanis1-0/+3
(bzr r10963)
2011-05-11Fix fallback to MRU locations.Jon A. Cruz1-20/+36
(bzr r10207)
2011-05-10Convert fixed paths to relative, including ..Jon A. Cruz1-0/+75
(bzr r10205)
2011-05-10Added simple usage of most recent file locations.Jon A. Cruz1-4/+40
(bzr r10204)
2011-05-06Adding initial cut of resource manager.Jon A. Cruz1-0/+272
(bzr r10198)