summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 746a505)
raw | patch | inline | side by side (parent: 746a505)
author | joncruz <joncruz@users.sourceforge.net> | |
Wed, 12 Dec 2007 08:13:13 +0000 (08:13 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Wed, 12 Dec 2007 08:13:13 +0000 (08:13 +0000) |
src/print.cpp | patch | blob | history | |
src/svg/svg-color.cpp | patch | blob | history | |
src/ui/dialog/print.cpp | patch | blob | history |
diff --git a/src/print.cpp b/src/print.cpp
index 9fc1285a54beeb4e2fa055e349bdbc9951b6d079..0dfb8ab5a211ab5711589814fa2997754488fdb1 100644 (file)
--- a/src/print.cpp
+++ b/src/print.cpp
}
void
-sp_print_document(SPDocument *doc, unsigned int direct)
+sp_print_document(SPDocument *doc, unsigned int /*direct*/)
{
sp_document_ensure_up_to_date(doc);
// Run print dialog
Inkscape::UI::Dialog::Print printop(doc,base);
Gtk::PrintOperationResult res = printop.run(Gtk::PRINT_OPERATION_ACTION_PRINT_DIALOG);
+ (void)res; // TODO handle this
// Release arena
sp_item_invoke_hide(base, dkey);
diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp
index 9f7a5a87cfaebd8ffed9a36aaddb222677b18874..677c81c1a30b3a12aa9051585e9b8766d77c80f5 100644 (file)
--- a/src/svg/svg-color.cpp
+++ b/src/svg/svg-color.cpp
@@ -486,8 +486,6 @@ bool sp_svg_read_icc_color( gchar const *str, gchar const **end_ptr, SVGICCColor
dest->colorProfile += *str;
}
str++;
- gboolean aa = g_ascii_isalpha(*str);
- gboolean bb = aa;
}
while ( g_ascii_isspace(*str) || *str == ',' ) {
str++;
index 1ca4b46d995dfc05f468c3a26c39b4dcef86e722..9165167f430cdbf17b19795249390ceb63bdd64c 100644 (file)
--- a/src/ui/dialog/print.cpp
+++ b/src/ui/dialog/print.cpp
namespace Dialog {
void
-Print::_draw_page (const Glib::RefPtr<Gtk::PrintContext> &context,
- int page_nr)
+Print::_draw_page (const Glib::RefPtr<Gtk::PrintContext> &context, int /*page_nr*/)
{
if (_tab.as_bitmap()) {
// Render as exported PNG
}
void
-Print::_custom_widget_apply (Gtk::Widget *widget)
+Print::_custom_widget_apply (Gtk::Widget */*widget*/)
{
g_warning (_("custom widget apply"));
}