Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2009-02-15 13:53:39 (GMT)
committer Christian Persch <chpe@src.gnome.org>2009-02-15 13:53:39 (GMT)
commit116cc32fa10941e73faa84697d33efd5c75ba7f7 (patch)
tree55e225f6af7d6da3fd8e95d1f50307d4588f0bf5 /backend
parent3902bcf1103b559bf918b132aa9d84e680a062cc (diff)
Fill in the error.
* backend/impress/impress-document.c: (impress_document_save): Fill in the error. svn path=/trunk/; revision=3461
Diffstat (limited to 'backend')
-rw-r--r--backend/impress/impress-document.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/backend/impress/impress-document.c b/backend/impress/impress-document.c
index 46c2cc9..72eb8c1 100644
--- a/backend/impress/impress-document.c
+++ b/backend/impress/impress-document.c
@@ -310,9 +310,13 @@ impress_document_load (EvDocument *document,
static gboolean
impress_document_save (EvDocument *document,
- const char *uri,
- GError **error)
+ const char *uri,
+ GError **error)
{
+ g_set_error_literal (error,
+ EV_DOCUMENT_ERROR,
+ EV_DOCUMENT_ERROR_INVALID,
+ "Not supported");
return FALSE;
}