Ticket #7052: Deskbar_BarMenuTitle_h_style_fix.diff

File Deskbar_BarMenuTitle_h_style_fix.diff, 1.6 KB (added by jscipione, 13 years ago)
  • src/apps/deskbar/BarMenuTitle.h

    diff --git a/src/apps/deskbar/BarMenuTitle.h b/src/apps/deskbar/BarMenuTitle.h
    index be7aa99..543cc51 100644
    a b Except as contained in this notice, the name of Be Incorporated shall not be  
    2626used in advertising or otherwise to promote the sale, use or other dealings in
    2727this Software without prior written authorization from Be Incorporated.
    2828
    29 Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
    30 of Be Incorporated in the United States and other countries. Other brand product
    31 names are registered trademarks or trademarks of their respective holders.
     29Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered
     30trademarks of Be Incorporated in the United States and other countries. Other
     31brand product names are registered trademarks or trademarks of their respective
     32holders.
    3233All rights reserved.
    3334*/
    3435
    class BMenu;  
    4647
    4748class TBarMenuTitle : public BMenuItem {
    4849public:
    49     TBarMenuTitle(float width,float height, const BBitmap* icon,
    50         BMenu* menu, bool inexpando = false);
     50    TBarMenuTitle(float width, float height, const BBitmap* icon,
     51        BMenu* menu, bool inexpando = false);
    5152    virtual ~TBarMenuTitle();
    5253
    5354    void SetWidthHeight(float width, float height);
    5455    void Draw();
    5556
    5657    status_t Invoke(BMessage* message);
    57        
     58
    5859protected:
    5960    void DrawContent();
    6061    void GetContentSize(float* width, float* height);
    private:  
    6364    float fWidth;
    6465    float fHeight;
    6566    bool fInExpando;
    66     const BBitmap* fIcon;   
     67    const BBitmap* fIcon;
    6768};
    6869
    6970#endif /* BARMENUTITLE_H */