From: Robert M. <rob...@us...> - 2008-02-09 12:53:41
|
Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Scintilla In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31738/Win32-GUI-Scintilla Modified Files: Scintilla.PL Log Message: Fix typo (Scintilla.PL) SendMessageNN -> SendMessage Index: Scintilla.PL =================================================================== RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Scintilla/Scintilla.PL,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Scintilla.PL 1 Feb 2008 13:33:22 -0000 1.7 --- Scintilla.PL 9 Feb 2008 12:53:44 -0000 1.8 *************** *** 464,468 **** print 'sub GetText {', "\n"; print ' my $self = shift;', "\n"; ! print ' my $length = $self->SendMessageNN(2182, 0, 0); # includes trailing NUL', "\n"; print ' my $text = " " x $length;', "\n\n"; print ' $self->SendMessageNP (2182, $length, $text);', "\n"; --- 464,468 ---- print 'sub GetText {', "\n"; print ' my $self = shift;', "\n"; ! print ' my $length = $self->SendMessage(2182, 0, 0); # includes trailing NUL', "\n"; print ' my $text = " " x $length;', "\n\n"; print ' $self->SendMessageNP (2182, $length, $text);', "\n"; |