diff --git a/src/tests/kits/interface/bbitmap/SetBitsTester.cpp b/src/tests/kits/interface/bbitmap/SetBitsTester.cpp index 5e7c0e3a28..4e2977e371 100644 --- a/src/tests/kits/interface/bbitmap/SetBitsTester.cpp +++ b/src/tests/kits/interface/bbitmap/SetBitsTester.cpp @@ -376,7 +376,7 @@ set_bits_test_data gray1_test_data4_set = { set_bits_test_data &gray1_test_data4_final = gray1_test_data4_set; - +#if 0 // dump_bitmap static void @@ -395,6 +395,7 @@ dump_bitmap(const BBitmap *bitmap) printf("\n"); } } +#endif // test_set_bits static diff --git a/src/tests/kits/interface/bpolygon/DummyPolygon.cpp b/src/tests/kits/interface/bpolygon/DummyPolygon.cpp index 74605e2aa6..a2515db8d7 100644 --- a/src/tests/kits/interface/bpolygon/DummyPolygon.cpp +++ b/src/tests/kits/interface/bpolygon/DummyPolygon.cpp @@ -1,12 +1,11 @@ /* - $Id: DummyPolygon.cpp,v 1.1 2002/11/23 04:42:57 jrand Exp $ + $Id: DummyPolygon.cpp,v 1.2 2004/02/19 07:40:06 axeld Exp $ This file contains the implementation of the dummy BPolygon class which allows the tests to grab the set of points from BPolygon's private members. This is the only way to effectively test BPolygon. - - */ +*/ #include "DummyPolygon.h" @@ -15,15 +14,17 @@ DummyPolygon::DummyPolygon() { throw "You cannot create a DummyPolygon, just cast existing BPolygon's to it!"; - } - - +} + + DummyPolygon::~DummyPolygon() { - } - - -const BPoint *DummyPolygon::GetPoints(void) +} + + +const BPoint * +DummyPolygon::GetPoints(void) { - return(fPts); - } \ No newline at end of file + return fPts; +} +