From: Vadim Zeitlin Date: Tue, 16 Nov 2004 11:30:15 +0000 (+0000) Subject: removed unused variable to suppress warning (and put a TODO in place) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d7c65934e67f8cd7d00d1adec9b7effb46f75488 removed unused variable to suppress warning (and put a TODO in place) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/gnome/gprint.cpp b/src/gtk/gnome/gprint.cpp index 12f74b4db3..5de18a4f58 100644 --- a/src/gtk/gnome/gprint.cpp +++ b/src/gtk/gnome/gprint.cpp @@ -614,7 +614,7 @@ void wxGnomePrintDC::SetPen( const wxPen& pen ) { if (!pen.Ok()) return; - int oldStyle = m_pen.GetStyle(); + // TODO: support for pen styles other than solid (use gnome_print_setdash) m_pen = pen; diff --git a/src/gtk1/gnome/gprint.cpp b/src/gtk1/gnome/gprint.cpp index 12f74b4db3..5de18a4f58 100644 --- a/src/gtk1/gnome/gprint.cpp +++ b/src/gtk1/gnome/gprint.cpp @@ -614,7 +614,7 @@ void wxGnomePrintDC::SetPen( const wxPen& pen ) { if (!pen.Ok()) return; - int oldStyle = m_pen.GetStyle(); + // TODO: support for pen styles other than solid (use gnome_print_setdash) m_pen = pen;