- the_one = m_bmpDisabled;
- else if (m_isSelected)
- the_one = m_bmpSelected;
- else if (m_hasFocus)
- the_one = m_bmpFocus;
- else
- the_one = m_bmpNormal;
-
- if (!the_one.Ok()) the_one = m_bmpNormal;
- if (!the_one.Ok()) return;
+ the_one = GetBitmapDisabled();
+ else if (m_isSelected)
+ the_one = GetBitmapPressed();
+ else if (HasFocus())
+ the_one = GetBitmapFocus();
+
+ if (!the_one.IsOk())
+ {
+ the_one = GetBitmapLabel();
+ if (!the_one.IsOk())
+ return;
+ }