| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/audio/spiralloops/files/ |
Upload File : |
--- GUI/Widgets/Fl_LED_Button.cxx.orig Thu Apr 19 22:48:11 2001
+++ GUI/Widgets/Fl_LED_Button.cxx Wed Nov 22 13:16:40 2006
@@ -3,7 +3,7 @@
#include "Fl_LED_Button.H"
#include <FL/fl_draw.H>
-Fl_LED_Button::Fl_LED_Button(int x, int y, int w, int h, const char* l=0):Fl_Light_Button(x,y,w,h,l) {
+Fl_LED_Button::Fl_LED_Button(int x, int y, int w, int h, const char* l):Fl_Light_Button(x,y,w,h,l) {
box(FL_NO_BOX);
down_box(FL_ROUND_DOWN_BOX);
selection_color(FL_RED);
@@ -15,7 +15,7 @@
void Fl_LED_Button::draw() {
uchar r,g,b;
- if (box()) draw_box(this==Fl::pushed() ? down(box()) : box(), color());
+ if (box()) draw_box(this==Fl::pushed() ? down_box() : box(), color());
Fl_Color col = value() ? selection_color() : color();
Fl::get_color((Fl_Color)selection_color(),r,g,b);
int d = h()/6;