summaryrefslogtreecommitdiff
path: root/gio/src/settingsschema.hg
Commit message (Collapse)AuthorAgeFilesLines
* gio/src/*.hg: Mark classes and functions with GIOMM_APIChun-wei Fan2020-03-071-2/+2
| | | | | | This prepares the build to export symbols using compiler directives, in our bid to drop gendef.exe. We will also mark pre-declarations of usage of glibmm class items with GLIBMM_API as well.
* Glib, Gio: Use _IS_REFCOUNTED_BOXEDTYPE where appropriateKjell Ahlstedt2019-01-301-0/+1
| | | | | | | | | * gio/src/dbusintrospection.hg: Add _IS_REFCOUNTED_BOXEDTYPE to Gio::DBus::InterfaceInfo which is used in _WRAP_PROPERTY in Gio::DBus::Proxy. * gio/src/settingsschema.hg: Add _IS_REFCOUNTED_BOXEDTYPE. SettingsSchema is used in _WRAP_PROPERTY in Gio::Settings. * glib/src/bytearray.[ccg|hg]: Replace the hand-coded Value specialization with _IS_REFCOUNTED_BOXEDTYPE.
* Update the Free Software Foundation address in copyright noticesKjell Ahlstedt2017-08-301-2/+1
| | | | Bug 786824
* Replace remaining uses of Glib::ArrayHandle<> with std::vector.Murray Cumming2017-03-171-1/+0
| | | | | | Using Glib::ArrayHandler<>::vector_to_array() and Glib::ArrayHandler<>::array_to_vector() instead, and only in the implementatoin instead of in the API.
* C++11: Mark all _CLASS_OPAQUE_REFCOUNTED classes as final.Murray Cumming2015-08-221-1/+1
| | | | | | | | | | Because _CLASS_OPAQUE_REFCOUNTED already generates a comment telling us not to derive from them, presumably because they can only be instantiated by reinterpret_cast<>ing a base C struct. Ideally, _CLASS_OPAQUE_REFCOUNTED would add the final keyword, but the class line is is not generated, so that would be a little difficult.
* Add SettingsSchema, SettingsSchemaKey and SettingsSchemaSource.Murray Cumming2015-06-211-0/+82
However, these are completely untested, and not all functions have been wrapped.