Accidently added only an int32 for the size, not an int64.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6738 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-02-25 15:25:07 +00:00
parent 51f0d53048
commit 4897914eca
+1 -1
View File
@@ -600,7 +600,7 @@ DataEditor::SendNotices(DataChange *change)
// update observer
BMessage update;
update.AddInt64("offset", offset);
update.AddInt32("size", size);
update.AddInt64("size", size);
SendNotices(kMsgDataEditorUpdate, &update);
}