|
From: John L. <jr...@us...> - 2011-05-11 02:29:59
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets
In directory vz-cvs-4.sog:/tmp/cvs-serv9777/bindings/wxwidgets
Modified Files:
wxcore_image.i
Log Message:
Use .PHONY in bindings Makefile to always have it run.
Don't return *this in wxImageHistogram::iterator++
Index: wxcore_image.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wxcore_image.i,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** wxcore_image.i 1 Oct 2009 04:21:01 -0000 1.6
--- wxcore_image.i 11 May 2011 02:29:56 -0000 1.7
***************
*** 224,228 ****
// operator used to compare with wxImageHistogram::end() iterator
%operator bool operator==(const wxImageHistogram::iterator& other) const
! %operator wxImageHistogram::iterator& operator++()
%endclass
--- 224,230 ----
// operator used to compare with wxImageHistogram::end() iterator
%operator bool operator==(const wxImageHistogram::iterator& other) const
!
! //%operator wxImageHistogram::iterator& operator++() // it just returns *this
! %operator void operator++() // it's best if we don't return the iterator
%endclass
|