summaryrefslogtreecommitdiffstats
path: root/src/io (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-173-3/+3
| | | | | | | | | | | | | | | 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)
* Allow Inkscape to run from Unicode directories on WindowsKrzysztof Kosi??ski2010-03-281-904/+0
| | | | | | Fixed bugs: - https://launchpad.net/bugs/505107 (bzr r9248)
* Move around files to remove some vanity directories.Krzysztof Kosi??ski2010-03-143-0/+715
| | | | | Also remove the obsolete IDL file stub. (bzr r9194)
* Cast cleanup.Jon A. Cruz2010-03-011-2/+1
| | | (bzr r9124)
* Compilation fixes for Windows 64-bit by FridrichKrzysztof Kosi??ski2010-02-281-4/+7
| | | (bzr r9118)
* Fix by Adib for 353847Josh Andler2009-09-162-0/+36
| | | (bzr r8601)
* FIX 407115 test writing into file and throw exception upstream if neededtheAdib2009-08-021-1/+4
| | | (bzr r8384)
* docPeter Moulder2009-04-061-3/+3
| | | (bzr r7639)
* io/crystalegg.xml: Fix a couple of textual errors.Peter Moulder2009-04-031-4/+2
| | | (bzr r7615)
* Patch from Lubomir Rintel: fixes for GCC 4.4Krzysztof Kosi??ski2009-02-262-0/+2
| | | (bzr r7380)
* Only build static libraries for subdirs than actually contain libraries, Krzysztof Kosi??ski2009-02-201-6/+1
| | | | | rather than for every subdirectory. (bzr r7336)
* Remove last remnants of ancient plugin support. Tidy up acinclude.m4.Krzysztof Kosi??ski2009-02-132-3/+0
| | | (bzr r7278)
* 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-0/+1
| | | | | reduce linking stage command for windows. (bzr r7100)
* From trunkTed Gould2008-10-271-4/+5
| | | (bzr r6885)
* Cmake: remove header files from source listsJoshua L. Blocher2008-06-241-11/+1
| | | (bzr r6046)
* Remove warningsBob Jamison2008-05-042-8/+53
| | | (bzr r5599)
* warning cleanup and fixed string free issueJon A. Cruz2008-05-041-1/+1
| | | (bzr r5594)
* cmake: copy over some excluded files from build.xmlJohan B. C. Engelen2008-04-151-1/+1
| | | (bzr r5453)
* cmake: EOL of cmakelists.txt in subdirsJohan B. C. Engelen2008-04-071-22/+22
| | | (bzr r5379)
* delete remaining .cvsignore filesAdib Taraben2008-04-011-5/+0
| | | (bzr r5299)
* add CMakeFiles for io, jabber_whiteboard libavoid libcola.Johan B. C. Engelen2008-03-301-0/+23
| | | (bzr r5245)
* fix broken link to _wspawn prototypeAdib Taraben2008-03-281-1/+15
| | | (bzr r5213)
* comment #define BYPASS_GLIB_SPAWN 1 to fix build on windowsJohan B. C. Engelen2008-03-271-1/+1
| | | (bzr r5208)
* Bug #204779 win32 crash on help menu - win32 spawn problemAdib Taraben2008-03-272-1/+892
| | | (bzr r5207)
* fix compilebulia byak2008-03-131-0/+1
| | | (bzr r5085)
* BUG 168896, fix BUG_168896_refactor_tempfile.patch problems with Vista ↵Albin Sunnanbo2008-03-132-0/+48
| | | | | tempfiles breaks some extensions (including Save as XAML) (bzr r5082)
* Applying fixes for gcc 4.3 build issues (closes LP: #169115)Bryce Harrington2008-01-313-2/+6
| | | (bzr r4629)
* glib/gtestutils.h is not available on gutsy, so switching to include ofBryce Harrington2008-01-051-1/+1
| | | | | | glib.h, which will include that file on hardy, but on gutsy will include gmessage.h. (bzr r4390)
* Fix missing include for g_assert() calls - causes FTBFS on Ubuntu HardyBryce Harrington2008-01-051-0/+1
| | | | | currently. (bzr r4389)
* Warning cleanup (including OFFSET_OF warning)Jon A. Cruz2007-12-011-0/+3
| | | (bzr r4150)
* Add virtual to a lot of the destructors. Note: perhaps it will have to be ↵Johan B. C. Engelen2007-11-042-4/+4
| | | | | reverted for some files to keep them C-compatible. (bzr r4024)
* warning cleanupJon A. Cruz2007-11-022-5/+5
| | | (bzr r4012)
* (noop): io/uristream.cpp: Remove some unneeded gchar/char casts. Change ↵Peter Moulder2007-10-111-6/+6
| | | | | constness of a couple of local vars to avoid some more casts (that were casting away constness). (bzr r3880)
* Avoid string literal char* warnings on g++-4.2: change some functions to ↵Peter Moulder2007-10-112-5/+5
| | | | | take char const* rather than char*. (bzr r3874)
* **/makefile.in: svn propset svn:eol-style native. Provide rule for ↵Peter Moulder2007-09-121-3/+3
| | | | | %.$(OBJEXT) instead of %.o. (bzr r3726)
* format string protection/clean up (CVE-2007-1463, CVE-2007-1464)Kees Cook2007-03-201-2/+2
| | | (bzr r2720)
* glib-2.4 system fixes: some includes to get prototypes, some version checksRalf Stephan2006-06-251-0/+2
| | | (bzr r1280)
* Added CREATE v0.1 support for gradients/swatches/patternsJoshua L. Blocher2006-04-282-0/+11
| | | (bzr r601)
* Add variable to fix problems with autopackageAaron Spike2006-04-061-14/+15
| | | (bzr r449)
* introduce uniform resource path API to replace copy-and-pasted hacksMenTaLguY2006-04-063-0/+167
| | | (bzr r436)
* moving trunk for module inkscapeMenTaLguY2006-01-1625-0/+7418
(bzr r1)