From 11620a7e4c4fc9781e55d2c6fa97d5afb3c0491f Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Sat, 16 Oct 2004 01:59:40 +0000 Subject: [PATCH] Fixed the message code for making LineArray calls in the server git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9377 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/View.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kits/interface/View.cpp b/src/kits/interface/View.cpp index b99cb176eb..366d39beb0 100644 --- a/src/kits/interface/View.cpp +++ b/src/kits/interface/View.cpp @@ -2953,11 +2953,11 @@ void BView::EndLineArray() debugger("Can't call EndLineArray before BeginLineArray"); check_lock(); - - owner->fLink->StartMessage( AS_LAYER_LINE_ARRAY ); + + owner->fLink->StartMessage( AS_STROKE_LINEARRAY ); owner->fLink->Attach( comm->count ); owner->fLink->Attach(comm->array,comm->count * sizeof(_array_hdr_) ); - + delete [] comm->array; delete comm; comm = NULL;