diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-27 02:55:41 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-27 02:55:41 +0800 |
commit | f342817e88f4e598b7962d94d497c408c45a8107 (patch) | |
tree | 030887f24eba1ffab1dcaf29792ba154506752c7 /shell/e-local-folder.h | |
parent | 4cc23476d3f379c519e6b4a08bf83188fc77f900 (diff) | |
download | gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar.gz gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar.bz2 gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar.lz gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar.xz gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.tar.zst gsoc2013-evolution-f342817e88f4e598b7962d94d497c408c45a8107.zip |
Finish the DnD stuff by implementing move/copy on the shell side as
well. Now we should just need to implement the corresponding bits in
the components...
svn path=/trunk/; revision=8949
Diffstat (limited to 'shell/e-local-folder.h')
-rw-r--r-- | shell/e-local-folder.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/e-local-folder.h b/shell/e-local-folder.h index 4e83af4b40..b57abe8d6f 100644 --- a/shell/e-local-folder.h +++ b/shell/e-local-folder.h @@ -1,7 +1,7 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-local-folder.h * - * Copyright (C) 2000 Helix Code, Inc. + * Copyright (C) 2000, 2001 Ximian, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -39,6 +39,9 @@ extern "C" { #define E_IS_LOCAL_FOLDER(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_LOCAL_FOLDER)) #define E_IS_LOCAL_FOLDER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_LOCAL_FOLDER)) +#define E_LOCAL_FOLDER_METADATA_FILE_NAME "folder-metadata.xml" +#define E_LOCAL_FOLDER_METADATA_FILE_NAME_LEN 19 + typedef struct _ELocalFolder ELocalFolder; typedef struct _ELocalFolderClass ELocalFolderClass; |