summaryrefslogtreecommitdiff
path: root/gio/src/fileiostream.ccg
Commit message (Collapse)AuthorAgeFilesLines
* Add Gio::giomm_SignalProxy_async_callback() with C linkageKjell Ahlstedt2023-03-311-2/+2
| | | | | and use it instead of SignalProxy_async_callback(). Part of issue #1
* Meson build: No implicit_include_directoriesKjell Ahlstedt2021-03-261-1/+1
| | | | | | | It shall not be possible to find a glibmm header file with #include <xxx.h> instead of #include <glibmm/xxx.h>. Not fully fixed until https://github.com/mesonbuild/meson/issues/8562 has been fixed.
* Update the Free Software Foundation address in copyright noticesKjell Ahlstedt2017-08-301-4/+1
| | | | Bug 786824
* Run clang-format on the .ccg files.Murray Cumming2016-02-261-20/+19
| | | | This seems to work.
* Gio: Use of nullptr instead of 0.Murray Cumming2015-11-201-2/+2
|
* C++11: Use nullptr.Murray Cumming2015-07-161-2/+2
|
* C++11: Some use of the auto keyword.Murray Cumming2015-07-151-4/+4
|
* Remove the reduced API options and code, as discussed on mailing list.Murray Cumming2010-05-311-18/+0
| | | | | | | | | * configure.ac: Removed the --enable-api-exceptions, --enable-api-properties, --enable-api-vfuncs and --enable-api-default-signal-handlers options. * build/reduced.m4: Removed. * tools/m4/*.m4: * tools/pm/Output.pm: Remove any use of ifdefs and auto_ptr for reduced API. * *.[hg|ccg|h|cc]: Remove the idefed code.
* Use 0 instead of NULL.Murray Cumming2010-01-291-2/+2
| | | | | | | * gio/src/*.ccg * glib/src/*.ccg: Use 0 instead of NULL because this is C++ where NULL is generally not a good idea. I didn't see any places where it was a real problem though.
* Use Glib::unwrap() instead of ->gobj(),Murray Cumming2010-01-291-1/+1
| | | | | | | * gio/src/*.ccg: Use Glib::unwrap() instead of ->gobj(), so we don't crash if people pass in null RefPtr<>s, which they might do by accident, or if we have not wrapped all the may-be-null cases as method overrides.
* wrap Gio::FileIOStreamJonathon Jongsma2009-05-181-0/+97