[DEBUG] add missing stream header
This commit is contained in:
parent
7958673b8d
commit
94e69dbdec
@ -6,6 +6,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <etk/types.hpp>
|
||||
#include <etk/Stream.hpp>
|
||||
|
||||
namespace ewol {
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ ewol::object::Manager::Manager(ewol::Context& _context) :
|
||||
periodicCall.setPeriodic(true);
|
||||
// set the basic time properties :
|
||||
m_applWakeUpTime = echrono::Clock::now();
|
||||
m_lastPeriodicCallTime = echrono::Clock::now();
|
||||
m_lastPeriodicCallTime = m_applWakeUpTime;
|
||||
}
|
||||
|
||||
ewol::object::Manager::~Manager() {
|
||||
|
@ -183,9 +183,8 @@ void ewol::widget::WSlider::subWidgetSelectSet(const etk::String& _widgetName) {
|
||||
}
|
||||
EWOL_ERROR("Can not change to a widget not present");
|
||||
}
|
||||
|
||||
void ewol::widget::WSlider::periodicCall(const ewol::event::Time& _event) {
|
||||
EWOL_VERBOSE("Periodic: " << m_slidingProgress << "/1.0 " << m_windowsSources << " ==> " << m_windowsDestination);
|
||||
EWOL_ERROR("Periodic: " << m_slidingProgress << "/1.0 " << m_windowsSources << " ==> " << m_windowsDestination << " " << _event);
|
||||
if (m_slidingProgress >= 1.0) {
|
||||
m_windowsSources = m_windowsDestination;
|
||||
if( m_windowsRequested != -1
|
||||
@ -284,6 +283,7 @@ void ewol::widget::WSlider::onRegenerateDisplay() {
|
||||
|
||||
void ewol::widget::WSlider::onChangePropertySelectWidget() {
|
||||
if (propertySelectWidget.get() != "") {
|
||||
EWOL_ERROR("SELECT new widget: " << propertySelectWidget.get());
|
||||
subWidgetSelectSet(*propertySelectWidget);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user