Made the (private) 'JAHA' message a constant, and moved it to ViewAux.h. Maybe it doesn't fit much in there, but I didn't want to create a new header just for it. Feel free to move it to a better place.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10521 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2004-12-23 14:03:28 +00:00
parent 3a15790e0f
commit fd99e7194c
2 changed files with 12 additions and 11 deletions
+8 -8
View File
@@ -2,15 +2,14 @@
#define _VIEWAUX_H_
#include <BeBuild.h>
#include <InterfaceDefs.h>
#include <Rect.h>
#include <Point.h>
#include <Region.h>
#include <Font.h>
/*
URGENT: Move this structure in a private header.
This one is copied from Shape.cpp.
*/
#include <InterfaceDefs.h>
#include <Point.h>
#include <Rect.h>
#include <Region.h>
const static uint32 kDeleteDragger = 'JAHA';
struct shape_data {
uint32 *opList;
int32 opCount;
@@ -43,6 +42,7 @@ enum {
};
// JB: Is there any reason why this can't be a struct ?
//struct _view_attr_{
class ViewAttr
{