Applied our style guide as someone (cough! *** Axel *** cough!) bugged me (correctly) about it :)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11181 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2005-02-01 14:29:06 +00:00
parent 976f53a988
commit 422c07914d
4 changed files with 79 additions and 76 deletions
+14 -11
View File
@@ -180,14 +180,17 @@ protected:
private:
int32 _m_channel_count;
int32 _m_value_channel;
int32 * _m_channel_min;
int32 * _m_channel_max;
int32 * _m_channel_val;
BString _m_min_label;
BString _m_max_label;
void * _m_multi_labels;
int32 fChannelCount;
int32 fCurrentChannel;
int32 * fChannelMin;
int32 * fChannelMax;
int32 * fChannelValues;
BString fMinLabel;
BString fMaxLabel;
void * fMultiLabels;
BMessage * fModificationMsg;
uint32 _reserved_[15];
@@ -200,17 +203,17 @@ private:
inline int32 * const & BChannelControl::MinLimitList() const
{
return _m_channel_min;
return fChannelMin;
}
inline int32 * const & BChannelControl::MaxLimitList() const
{
return _m_channel_max;
return fChannelMax;
}
inline int32 * const & BChannelControl::ValueList() const
{
return _m_channel_val;
return fChannelValues;
}