summaryrefslogtreecommitdiffstats
path: root/src/debug (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move from deprecated GTimeVal to g_get_monotonic_time()Jabier Arraiza2019-10-121-3/+2
|
* Eliminate clang warningsThomas Holder2019-08-233-3/+3
| | | | | | | | | | -Winfinite-recursion -Wpessimizing-move -Wunused-label -Wunneeded-internal-declaration -Wself-assign-overloaded -Wunused-const-variable (some) -Wsometimes-uninitialized (some)
* Rm unused code now Gtk+ >= 3.22 dependency is setAlexander Valavanis2019-05-261-39/+2
|
* Debug: Remove the last remnants of Util::ptr_shared.Emmanuel Gil Peyrot2019-01-244-8/+5
|
* Timestamp: Switch to std::shared_ptr.Emmanuel Gil Peyrot2019-01-242-6/+8
|
* Demangle: Switch to std::shared_ptr.Emmanuel Gil Peyrot2019-01-242-12/+10
|
* Event: Switch all call sites from Util::ptr_shared to char const* or ↵Emmanuel Gil Peyrot2019-01-242-5/+1
| | | | std::shared_ptr.
* Logger: Switch TagStack to std::shared_ptr.Emmanuel Gil Peyrot2019-01-243-7/+7
|
* Event: Make property value char const* too.Emmanuel Gil Peyrot2019-01-243-10/+18
|
* Event: Make name and property name char const*.Emmanuel Gil Peyrot2019-01-243-31/+18
|
* Clarify licensesMax Gaukler2018-11-0819-18/+37
| | | | | | - 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
* Remove #include "config.h" wherever possibleEduard Braun2018-10-012-5/+1
|
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-182-3/+3
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-183-4/+4
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-182-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-184-13/+13
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-122-4/+4
| | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-045-15/+15
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-295-15/+15
|
* Removing sample meson build files.Felipe Corrêa da Silva Sanches2018-03-171-37/+0
| | | | | | | | | | These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY
* [meson-build] libdebugFelipe Corrêa da Silva Sanches2018-03-171-0/+37
|
* Merge branch 'smartpointer_refactor' of gitlab.com:jali/inkscapeMarc Jeanmougin2017-10-2010-27/+27
|\
| * Refactor Util::ptr_sharedJan Lingscheid2017-10-1810-27/+27
| | | | | | | | | | Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway.
* | Remove all unused makefile.inStefano Facchini2017-10-191-17/+0
|/
* Fix some new Gdk deprecationsAlex Valavanis2017-02-071-10/+31
| | | (bzr r15491)
* Remove deprecated Autotools and btool files. Please use CMake insteadAlex Valavanis2016-08-081-15/+0
| | | (bzr r15046)
* Rename libgc/ => inkgc/ to reflect difference from Boehm GCLiam P. White2015-02-265-5/+5
| | | (bzr r13950)
* Isolate components of libgcLiam P. White2015-02-255-5/+5
| | | (bzr r13946)
* More header cleanupLiam P. White2014-09-062-1/+3
| | | (bzr r13341.1.198)
* Fix gdk_display_get_n_screens deprecationAlex Valavanis2014-08-231-0/+6
| | | (bzr r13341.1.161)
* code cleanup: make more functions static or include their own headers.Campbell Barton2012-10-041-0/+1
| | | (bzr r11736)
* Switch to top-level glib headers. Thanks to DimStar for patchAlex Valavanis2011-12-083-5/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/898538 (bzr r10762)
* cmake:Campbell Barton2011-06-131-1/+16
| | | | | | | - group source/headers per library (for some IDE's) - include headers with source listing (also for IDE's) - remove unneeded Find modules (bzr r10281)
* cmake: now builds without having most of the source listed in 1 file.Campbell Barton2011-06-131-1/+2
| | | (bzr r10278)
* cmake:Campbell Barton2011-06-131-2/+1
| | | | | | | turns out my recent commits (which I undid) were not incorrect, variables were set in subdirectories then used in the parent directory, where they were still unset. Fixing this broke the build because some files in the subdir were not compiling. (bzr r10276)
* cmake: give all libs a _LIB suffix, workaround 'debug' being confused with ↵Campbell Barton2011-06-121-2/+2
| | | | | cake keyword, and also dont mix up dor names with libs. (bzr r10274)
* work in progress cmake commit:Campbell Barton2011-06-121-11/+12
| | | | | | - cmake now builds all files that automake does but does NOT link yet - inlcudes nasty hard coded paths and libs (will replace once linking works) (bzr r10272)
* Use generic headers in preparation for GTK+ 3 transitionAlex Valavanis2011-06-032-3/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/792263 (bzr r10252.1.1)
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-1718-18/+18
| | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* Only build static libraries for subdirs than actually contain libraries, Krzysztof Kosi??ski2009-02-201-6/+2
| | | | | rather than for every subdirectory. (bzr r7336)
* Improved version reporting. Add SVN revision and custom status to Krzysztof Kosi??ski2009-01-131-2/+2
| | | | | version string on Linux. (bzr r7123)
* Cmake: Fixed the extra -l in the link command, plus a add linking for all ↵Joshua L. Blocher2009-01-121-1/+3
| | | | | sub-libs of inkscape. (bzr r7120)
* Cmake: restructure build files to be more like current build system. Should ↵Joshua L. Blocher2009-01-091-1/+1
| | | | | reduce linking stage command for windows. (bzr r7100)
* From trunkTed Gould2008-10-271-2/+3
| | | (bzr r6885)
* Add tracking of skew factor and display in warning message.Jon A. Cruz2008-07-272-2/+15
| | | (bzr r6429)
* Added compensation factor for time-skew with event latency.Jon A. Cruz2008-07-262-2/+5
| | | (bzr r6421)
* instrument event latencyMenTaLguY2008-07-084-0/+119
| | | (bzr r6231)
* Cmake: remove header files from source listsJoshua L. Blocher2008-06-241-10/+0
| | | (bzr r6046)
* process source subdirectories with INCLUDE() instead of ADD_DIRECTORIES()Aaron Spike2008-04-101-1/+1
| | | | | | | This more or less mimics what is being done by automake with the Makefile_insert files What we were doing before did not work because add_directories() isn't able to propagate variables upwards. (bzr r5397)
* delete remaining .cvsignore filesAdib Taraben2008-04-011-3/+0
| | | (bzr r5299)