diff --git a/main/main.cpp b/main/main.cpp index 934eceb..5eb50c6 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -14,10 +14,6 @@ /** The class inherits a char *text from the Fl_Box. It also shows the window-resolution and the mouse-position. * @param text: A pointer to a char-array, that can contain a text like a status or whatever you want. - * @parameter x: The mouse-position on the x-axis. - * @parameter y: The mouse-position on the y-axis: - * @parameter w: The width of a single pixel, - * @parameter h: The height of a single pixel. */ class Statusbar: public Fl_Box { char *text; @@ -68,7 +64,6 @@ class Image : public Fl_Widget { */ public: - /*Constructor*/ Image(int x, int y, int w, int h) : Fl_Widget(x, y, w, h, 0) { buf = new uchar[w * h * 3];