diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-04 21:33:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-04 21:33:27 +0000 |
| commit | be2f47223c17c399e05436a34ba4140f2fc44fc9 (patch) | |
| tree | 2ce88a12e420f981a66466057e9156653bd651b4 /src/Screen.hh | |
| parent | de868d58dd738ec06072bfa90b5d598d5001c76d (diff) | |
make the styles' doJustify methods stop returning the string length as this is no longer needed with the BFont class
Diffstat (limited to 'src/Screen.hh')
| -rw-r--r-- | src/Screen.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 0fabe9a4..60418cd7 100644 --- a/src/Screen.hh +++ b/src/Screen.hh @@ -71,8 +71,8 @@ struct WindowStyle { TextJustify justify; - int doJustify(const std::string &text, int &start_pos, - unsigned int max_length, unsigned int modifier) const; + void doJustify(const std::string &text, int &start_pos, + unsigned int max_length, unsigned int modifier) const; }; struct ToolbarStyle { @@ -83,8 +83,8 @@ struct ToolbarStyle { TextJustify justify; - int doJustify(const std::string &text, int &start_pos, - unsigned int max_length, unsigned int modifier) const; + void doJustify(const std::string &text, int &start_pos, + unsigned int max_length, unsigned int modifier) const; }; struct MenuStyle { |
