~ubuntu-branches/ubuntu/wily/wxwidgets3.0/wily-proposed

« back to all changes in this revision

Viewing changes to include/wx/msw/textctrl.h

  • Committer: Package Import Robot
  • Author(s): Olly Betts
  • Date: 2014-06-18 12:42:22 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140618124222-y7t2vpsije1cesxy
Tags: 3.0.1-1
* New upstream release
  + Incorporates most of the patches we were carrying - only one left is:
    wx-config-conditionalise-webview-in-std.patch
* Drop versioning of dependencies from run-time libraries to wx-common -
  this will make the transition to the next wx version harder, and also
  makes backporting to wheezy more work.
* Mark -dbg packages as "Multi-Arch: same".
* Correct short descriptions of the webview packages to not just be
  copies of the corresponding media package's short description.
* Wrap 81 character line in package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
    // the limit is due to a previous call to SetMaxLength() and not built in)
204
204
    bool HasSpaceLimit(unsigned int *len) const;
205
205
 
206
 
    // call this to increase the size limit (will do nothing if the current
207
 
    // limit is big enough)
 
206
    // Used by EN_MAXTEXT handler to increase the size limit (will do nothing
 
207
    // if the current limit is big enough). Should never be called directly.
208
208
    //
209
 
    // returns true if we increased the limit to allow entering more text,
210
 
    // false if we hit the limit set by SetMaxLength() and so didn't change it
 
209
    // Returns true if we increased the limit to allow entering more text,
 
210
    // false if we hit the limit set by SetMaxLength() and so didn't change it.
211
211
    bool AdjustSpaceLimit();
212
212
 
213
213
#if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)