Remove leftover debugging code

This commit is contained in:
patrick96 2016-07-30 16:08:36 +02:00
parent fec727c8d8
commit 1025a8e7dc

View File

@ -1,4 +1,3 @@
#include <iostream>
#include "lemonbuddy.hpp"
#include "bar.hpp"
#include "utils/math.hpp"
@ -6,7 +5,6 @@
#include "modules/volume.hpp"
using namespace modules;
using namespace std;
VolumeModule::VolumeModule(std::string name_) : EventModule(name_)
{
@ -150,7 +148,6 @@ bool VolumeModule::update()
this->volume = volume;
this->muted = muted;
this->label_volume_tokenized->text = this->label_volume->text;
this->label_volume_tokenized->replace_token("%percentage%", std::to_string(this->volume()) +"%");