summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove unused variable in gvdb-readerRyan Lortie2011-02-031-2/+0
| | | | | | | | | | | | As originally committed against dconf by Owen. Newer GCC flags this.
* | Revert "Remove unused variable"Ryan Lortie2011-02-031-0/+2
| | | | | | | | This reverts commit a6b6f296792f2f5dc985812d5d221819be970593.
* | dconf engine: fix multi-threading issueRyan Lortie2011-02-031-2/+8
| | | | | | | | | | | | | | | | Some weird issues have been popping up due to the multi-threaded nature of GSettings making use of the dconf engine. This patch tries to fix that. Closes #640611
* | Don't crash on DBus connection failureRyan Lortie2011-01-311-0/+7
| | | | | | | | | | When adding matches, if we can't connect to DBus, the code will presently crash. This fixes that.
* | Remove unused variableOwen W. Taylor2011-01-281-2/+0
| | | | | | | | The unused bloom_shift variable was causing compiler warnings with GCC 4.6
* | -Wno-error for dconf-updateJürg Billeter2011-01-281-0/+1
| | | | | | | | Fixes build with gcc 4.6.
* | Add G_GNUC_INTERNAL to symbolsRyan Lortie2011-01-253-0/+22
| | | | | | | | We're being sloppy about symbol exports. Clean that up.
* | Merge remote branch 'gvdb/master'Ryan Lortie2011-01-252-2/+6
|\ \ | |/
| * Mark a symbol as G_GNUC_INTERNALRyan Lortie2011-01-251-0/+1
| |
| * Fix some harmless sign compare warningsRyan Lortie2011-01-171-2/+2
| |
| * C++ify the reader headerRyan Lortie2011-01-171-0/+3
| |
* | Remove unused 'length' variable.Ryan Lortie2011-01-251-2/+0
| | | | | | | | Closes #640566.
* | Drop from libtool days: -avoid-version and -moduleRyan Lortie2011-01-251-1/+1
| | | | | | | | | | | | These flags were required to prevent libtool from trying to soname the library. They aren't needed with normal linkers and actually cause some problems with newer binutils.
* | Check for value == NULL before unref()Ryan Lortie2011-01-201-3/+6
| | | | | | | | | | If a key reset is being done, then the 'value' variable in the write call will be NULL.
* | Release 0.7.10.7.1Ryan Lortie2011-01-181-0/+6
| |
* | Fix up CLEANFILES for both librariesRyan Lortie2011-01-182-1/+2
| |
* | One more linker fixRyan Lortie2011-01-181-1/+2
| |
* | Improve .gitignoreRyan Lortie2011-01-182-0/+2
| |
* | Fix linking of dbus1 test caseRyan Lortie2011-01-181-1/+1
| | | | | | | | | | Some linkers care about the order of -l options appearing on the commandline.
* | Avoid using -ldbus-1 symbols in the test caseRyan Lortie2011-01-171-3/+1
| | | | | | | | ...since we don't link to it.
* | Fix linker flags for libdconf-dbus-1Ryan Lortie2011-01-171-1/+1
| |
* | Bump the versionRyan Lortie2011-01-171-1/+1
| |
* | Release 0.70.7Ryan Lortie2011-01-172-1/+12
| |
* | dist fix: add the .ui file to EXTRA_DISTRyan Lortie2011-01-171-0/+1
| |
* | Merge branch 'dbus1'Ryan Lortie2011-01-1710-5/+1193
|\ \
| * | dbus-1: Fill in some reply handling stub codeRyan Lortie2011-01-101-12/+37
| | |
| * | dbus-1: use shared dbus connection by defaultRyan Lortie2011-01-101-0/+6
| | | | | | | | | | | | | | | If the caller gives NULL for session or system bus, grab the default one from libdbus-1.
| * | dbus-1: initialise some variablesRyan Lortie2011-01-031-2/+3
| | |
| * | dbus-1: rename some functionsRyan Lortie2011-01-021-32/+32
| | |
| * | dbus-1: install pkgconfigRyan Lortie2011-01-024-0/+19
| | |
| * | dbus client constructor: Reverse session/systemRyan Lortie2011-01-022-4/+4
| | |
| * | dbus1: c++ify the headerRyan Lortie2011-01-021-0/+4
| | |
| * | dbus-1: add support for watching keysRyan Lortie2011-01-023-121/+168
| | | | | | | | | | | | Add code to the test case to ensure that it's working.
| * | Fix up build orderRyan Lortie2010-12-292-1/+3
| | | | | | | | | | | | | | | tests/ depends on libdconf-dbus-1 so build that first. Also make sure the proper .so files are generated.
| * | Add support for libdbus-1Ryan Lortie2010-12-209-5/+1089
| | |
* | | Add set to default buttonRobert Ancell2011-01-155-34/+97
| | |
* | | Add missing UI fileRobert Ancell2011-01-141-0/+265
| | |
* | | Use GtkBuilderRobert Ancell2011-01-145-70/+42
| | |
* | | Install a .desktop fileRobert Ancell2011-01-143-0/+19
| | |
* | | Sort keysRobert Ancell2011-01-141-12/+28
| | |
* | | Use a switch insead of if-elsesRobert Ancell2011-01-141-13/+15
| | |
* | | Read range values from schemaRobert Ancell2011-01-142-67/+73
| | |
* | | Use implicit types for variables, print warnings for unknown things in schemasRobert Ancell2011-01-144-41/+81
| | |
* | | Implement the new GtkCellRenderer preferred layout methods, this fixes the ↵Robert Ancell2011-01-142-8/+35
| | | | | | | | | | | | | | | | | | crash in bug #637944 Also get rid of a not-required construct method
* | | Remove non-required construct methodsRobert Ancell2011-01-141-6/+0
| | |
* | | Fix some bugs with key label layoutRobert Ancell2011-01-141-12/+14
| | |
* | | Use normal slice allocation for OutstandingWatchRyan Lortie2011-01-141-4/+6
| | | | | | | | | | | | | | | | | | The fact that the last commit broke the old code is proof that it was far too fragile. Change it to use more common idioms (at the cost of an extremely marginal increase in memory consumption).
* | | Bug 639523 - crash when DCONF_PROFILE is setRyan Lortie2011-01-141-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | When using multiple databases in a single profile, dconf uses some freed memory (due to the AddMatch asynchronous callback being called multiple times and freeing the memory each time). Fix that with a reference count.
* | | test case: actually do the testRyan Lortie2011-01-091-1/+1
| | | | | | | | | | | | | | | | | | The test was comparing a hash table to itself instead of the other hash table. Turns out it was correct anyway, but we should actually do the check...
* | | Fix DBus introspection enumerationRyan Lortie2010-12-211-1/+4
| | | | | | | | | | | | | | | | | | It should also work for people who have usernames other than 'desrt' Closes #634229.