summaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-04 21:33:27 +0000
committerDana Jansens <danakj@orodu.net>2002-07-04 21:33:27 +0000
commitbe2f47223c17c399e05436a34ba4140f2fc44fc9 (patch)
tree2ce88a12e420f981a66466057e9156653bd651b4 /src/Screen.hh
parentde868d58dd738ec06072bfa90b5d598d5001c76d (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.hh8
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 {