PSDTranslator: Codestyle cleanup
This commit is contained in:
@@ -122,8 +122,9 @@ PSDTranslator::DerivedTranslate(BPositionIO *source,
|
||||
uint32 outType, BPositionIO *target, int32 baseType)
|
||||
{
|
||||
if (outType != B_TRANSLATOR_BITMAP
|
||||
&& outType != PSD_IMAGE_FORMAT)
|
||||
&& outType != PSD_IMAGE_FORMAT) {
|
||||
return B_NO_TRANSLATOR;
|
||||
}
|
||||
|
||||
switch (baseType) {
|
||||
case 0:
|
||||
@@ -149,7 +150,6 @@ PSDTranslator::DerivedTranslate(BPositionIO *source,
|
||||
}
|
||||
|
||||
|
||||
|
||||
status_t
|
||||
PSDTranslator::_TranslateFromBits(BPositionIO* stream,
|
||||
BMessage* ioExtension, uint32 outType,
|
||||
@@ -162,8 +162,9 @@ PSDTranslator::_TranslateFromBits(BPositionIO* stream,
|
||||
return result;
|
||||
|
||||
if (bitsHeader.colors != B_RGB32
|
||||
&& bitsHeader.colors != B_RGBA32)
|
||||
&& bitsHeader.colors != B_RGBA32) {
|
||||
return B_NO_TRANSLATOR;
|
||||
}
|
||||
|
||||
uint32 width = bitsHeader.bounds.IntegerWidth() + 1;
|
||||
uint32 height = bitsHeader.bounds.IntegerHeight() + 1;
|
||||
|
||||
Reference in New Issue
Block a user