~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to Nux/EditTextBox.h

  • Committer: Jay Taoko
  • Date: 2011-10-21 23:49:15 UTC
  • mfrom: (508.1.2 nux-20)
  • Revision ID: jay.taoko@canonical.com-20111021234915-hnzakb5ndebica8i
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
    void SetText(const tstring &Caption);
56
56
    void SetText(const NString &Caption);
57
57
    const char *GetText() const;
58
 
    t_u32 GetTextSize() const
 
58
    unsigned int GetTextSize() const
59
59
    {
60
 
      return (t_u32) m_Text.Length();
 
60
      return (unsigned int) m_Text.Length();
61
61
    }
62
62
 
63
63
    void SetDoubleValue(double d);