summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 22:09:17 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 22:09:17 +0000
commit6139e446a6575eb82f11718d5c4cde61f81946a9 (patch)
tree98c4085a4f4a76e38baae5d97e64c6f903c3c9ef /src
parent6f61d8f2390f5df2d9033b69ed16c6c78bb80c1d (diff)
Removed old fl_draw_returnarrow() code that wasn't getting used.
git-svn-id: file:///fltk/svn/fltk/trunk@325 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_symbols.cxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/fl_symbols.cxx b/src/fl_symbols.cxx
index 8b87edf34..1851acf6b 100644
--- a/src/fl_symbols.cxx
+++ b/src/fl_symbols.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_symbols.cxx,v 1.7 1999/01/27 08:45:11 bill Exp $"
+// "$Id: fl_symbols.cxx,v 1.8 1999/02/22 22:09:17 mike Exp $"
//
// Symbol drawing code for the Fast Light Tool Kit (FLTK).
//
@@ -280,18 +280,6 @@ static void draw_arrow(Fl_Color col)
BC; vv(0.65,0.1); vv(1.0,0.0); vv(0.65,-0.1); EC;
}
-#if 0
-static void fl_draw_returnarrow(Fl_Color col) {
- fl_color(col);
- fl_begin_polygon();
- vv(-0.8,0.0); vv(-0.1,0.7); vv(-0.1,-0.7);
- fl_end_polygon();
- set_outline_color(col);
- fl_begin_loop(); vv(-0.8,0.0); vv(-0.1,0.7); vv(-0.1,-0.7);fl_end_loop();
- fl_begin_line(); vv(-0.1,0.0); vv(0.8,0.0); vv(0.8,-0.7); fl_end_line();
-}
-#endif
-
static void draw_square(Fl_Color col)
{ rectangle(-1,-1,1,1,col); }
@@ -395,5 +383,5 @@ void Fl::enable_symbols() {
}
//
-// End of "$Id: fl_symbols.cxx,v 1.7 1999/01/27 08:45:11 bill Exp $".
+// End of "$Id: fl_symbols.cxx,v 1.8 1999/02/22 22:09:17 mike Exp $".
//