summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-26 19:17:12 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-26 19:17:12 +0000
commit21838f15fe565fe38f243ff02b7dfa19e6016a15 (patch)
treeb655cf5a02d503f200cd19af8b532fb36d34a771
parent3e556468b2bcf2727eeeb357e4b0c5fb98620d64 (diff)
compat with 64bit
git-svn-id: file:///home/lennart/svn/public/pavumeter/trunk@30 c62a5a7b-6fe3-0310-9d5a-afe6de46906b
-rw-r--r--src/vumeter.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/vumeter.cc b/src/vumeter.cc
index d5e424e..96b729b 100644
--- a/src/vumeter.cc
+++ b/src/vumeter.cc
@@ -76,7 +76,7 @@ protected:
std::deque<LevelInfo *> levelQueue;
public:
- virtual void pushData(const float *d, size_t l);
+ virtual void pushData(const float *d, unsigned l);
virtual void showLevels(const LevelInfo& i);
virtual void updateLatency(pa_usec_t l);
};
@@ -157,9 +157,6 @@ bool MainWindow::on_delete_event(GdkEventAny*) {
}
void MainWindow::addChannel(const Glib::ustring &l) {
-
-
-
channels.push_back(new ChannelInfo(*this, l));
}