From: Christian Persch Date: Sun, 15 Feb 2009 13:53:39 +0000 (+0000) Subject: Fill in the error. X-Git-Tag: EVINCE_2_25_91~19 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=116cc32fa10941e73faa84697d33efd5c75ba7f7;p=evince.git Fill in the error. * backend/impress/impress-document.c: (impress_document_save): Fill in the error. svn path=/trunk/; revision=3461 --- diff --git a/ChangeLog b/ChangeLog index 7b78906f..f74c5e20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-14 Christian Persch + + * backend/impress/impress-document.c: (impress_document_save): + Fill in the error. + 2009-02-14 Christian Persch * libdocument/ev-document.c: (ev_document_load): Add code to catch diff --git a/backend/impress/impress-document.c b/backend/impress/impress-document.c index 46c2cc96..72eb8c1f 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; }