From: ishmal Date: Thu, 1 Jun 2006 05:04:57 +0000 (+0000) Subject: remove deprecation warnings X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=69a2a17bdc758f2d554399a8115087beade71d11;p=inkscape.git remove deprecation warnings --- diff --git a/src/dialogs/export.cpp b/src/dialogs/export.cpp index 7cbeee41f..3b1943c4f 100644 --- a/src/dialogs/export.cpp +++ b/src/dialogs/export.cpp @@ -780,8 +780,8 @@ sp_export_area_toggled (GtkToggleButton *tb, GtkObject *base) } case SELECTION_PAGE: bbox = NR::Rect(NR::Point(0.0, 0.0), - NR::Point(sp_document_width(doc)), - sp_document_height(doc)); + NR::Point(sp_document_width(doc), sp_document_height(doc)) + ); // std::cout << "Using selection: PAGE" << std::endl; key = SELECTION_PAGE;