gcc 3 fix (no default args in implementation) and dead code removal

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5839 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
haydentech
2003-12-30 22:50:52 +00:00
parent 1a4e801adc
commit c78c0787bd
+1 -36
View File
@@ -74,7 +74,7 @@ int32 count_font_styles(font_family name)
\param flags iF non-NULL, the values of the flags IS_FIXED and B_HAS_TUNED_FONT are returned
\return B_ERROR if the index does not correspond to a font family
*/
status_t get_font_family(int32 index, font_family *name, uint32 *flags=NULL)
status_t get_font_family(int32 index, font_family *name, uint32 *flags)
{
// Fix over R5, which does not check for NULL font family names - it just crashes
if(!name)
@@ -153,41 +153,6 @@ status_t set_font_cache_info(uint32 id, void *set)
// is a completely different font engine.
}
/*
class BFontPrivate
{
public:
BFontPrivate(void);
BFontPrivate &operator=(const BFontPrivate &fontdata);
BRect fBox;
font_family fFamily;
font_style fStyle;
bool fFixed;
font_file_format fFormat;
font_direction fDirection;
int32 fPrivateFlags;
};
BFontPrivate::BFontPrivate(void)
{
fBox=BRect(0,0,0,0);
fFixed=false;
fFormat=B_TRUETYPE_WINDOWS;
fDirection=B_FONT_LEFT_TO_RIGHT;
}
BFontPrivate & BFontPrivate::operator=(const BFontPrivate &fontdata)
{
fBox=fontdata.fBox;
*fFamily=*(fontdata.fFamily);
*fStyle=*(fontdata.fStyle);
fFixed=fontdata.fFixed;
fFormat=fontdata.fFormat;
fDirection=fontdata.fDirection;
return *this;
}
*/
//----------------------------------------------------------------------------------------
// BFont Class Definition