~kklimonda/ubuntu/natty/glibmm2.4/update

« back to all changes in this revision

Viewing changes to gio/src/fileinfo.hg

  • Committer: Bazaar Package Importer
  • Author(s): Deng Xiyue
  • Date: 2008-10-21 22:29:45 UTC
  • mfrom: (1.2.32 upstream)
  • Revision ID: james.westby@ubuntu.com-20081021222945-14plcglhrbjbz3c2
Tags: 2.18.1-1
* New upstream stable release.
* Use POSIX standard regex classes in sed trick in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace Gio
30
30
{
31
31
 
32
 
_WRAP_ENUM(FileType, GFileType, NO_GTYPE)
 
32
// Rename FILE_TYPE_UNKNOWN to FILE_TYPE_NOT_KNOWN because the former is a
 
33
// define in a Windows header (winbase.h, included from windows.h).
 
34
_WRAP_ENUM(FileType, GFileType, NO_GTYPE, s#FILE_TYPE_UNKNOWN#FILE_TYPE_NOT_KNOWN#)
 
35
 
 
36
// Provide FILE_TYPE_UNKNOWN for backwards compatibility.
 
37
#ifndef DOXYGEN_SHOULD_SKIP_THIS
 
38
#ifndef FILE_TYPE_UNKNOWN
 
39
const FileType FILE_TYPE_UNKNOWN = FILE_TYPE_NOT_KNOWN;
 
40
#endif
 
41
#endif
33
42
 
34
43
//TODO: attribute strings
35
44