From 546c4ec72435c25b5cd0bf927e98c08ec2c072ac Mon Sep 17 00:00:00 2001 From: deva Date: Sun, 30 Oct 2005 15:46:14 +0000 Subject: *** empty log message *** --- src/mainwindow.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mainwindow.cc') diff --git a/src/mainwindow.cc b/src/mainwindow.cc index 9ea5285..279fab6 100644 --- a/src/mainwindow.cc +++ b/src/mainwindow.cc @@ -255,7 +255,7 @@ void MainWindow::createGui() g1->addWidget(btn_freeze, 3, 2); btn_mute = createButton(""); - btn_mute->setPixmap(*img_mute); + btn_mute->setPixmap(*img_unmute); QObject::connect( btn_mute, SIGNAL(clicked()), this, SLOT(mute_clicked()) ); g1->addWidget(btn_mute, 3, 3); @@ -557,8 +557,8 @@ void MainWindow::freeze_clicked() void MainWindow::mute_clicked() { muted = !muted; - if(muted) btn_mute->setPixmap(*img_unmute); - else btn_mute->setPixmap(*img_mute); + if(muted) btn_mute->setPixmap(*img_mute); + else btn_mute->setPixmap(*img_unmute); camera->setMute(muted); } -- cgit v1.2.3