Added forgotten 'static' keyword to clip_x().

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7889 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2010-11-23 17:37:49 +00:00
parent 36ffb5c5d5
commit c0fcb987cc

View File

@ -143,7 +143,7 @@ static int clip_to_short(int &x, int &y, int &w, int &h) {
in fl_xyline() and fl_yxline(). Note that this can't be used for
arbitrary lines (not horizontal or vertical).
*/
int clip_x (int x) {
static int clip_x (int x) {
int kmin = -fl_line_width_;
int kmax = SHRT_MAX - fl_line_width_;