remove som debug output from layouts

This commit is contained in:
Andrea Blankenstijn 2021-07-08 19:10:14 +02:00
parent 596c506307
commit 9ddefcfd38
3 changed files with 0 additions and 10 deletions

View file

@ -1,5 +1,3 @@
#include "iostream"
#include <basic_widgets/horizontal_layout.hpp>
Horizontal_Layout::Horizontal_Layout(SDL_Renderer* r)
@ -19,8 +17,6 @@ void Horizontal_Layout::_update_layout()
(int)(widget_size - _interspace),
_viewport.h
};
std::cerr << "h-layout@" << this << ":widget:" << i << " " << widget_vp.x << ","
<< widget_vp.y << "," << widget_vp.w << "," << widget_vp.h << std::endl;
_widgets.at(i)->viewport(widget_vp);
}
}

View file

@ -1,5 +1,3 @@
#include <iostream>
#include <basic_widgets/layout.hpp>
Layout::Layout(SDL_Renderer* r)

View file

@ -1,5 +1,3 @@
#include <iostream>
#include <basic_widgets/vertical_layout.hpp>
Vertical_Layout::Vertical_Layout(SDL_Renderer* r)
@ -19,8 +17,6 @@ void Vertical_Layout::_update_layout()
_viewport.w,
(int)(widget_size - _interspace),
};
std::cerr << "v-layout@" << this << ":widget:" << i << " " << widget_vp.x << ","
<< widget_vp.y << "," << widget_vp.w << "," << widget_vp.h << std::endl;
_widgets.at(i)->viewport(widget_vp);
}
}