summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera/gui/mainwindow.cpp
authormickeyl <mickeyl>2003-05-07 16:14:40 (UTC)
committer mickeyl <mickeyl>2003-05-07 16:14:40 (UTC)
commit1e9e3371d61cfc404329a8bad51f8b061c1ad73d (patch) (side-by-side diff)
treeede98f5b571543cef4047c3a33e314ffee91a94c /noncore/multimedia/camera/gui/mainwindow.cpp
parent7c8110d568ac60517916114ac5fc4e850156d4e5 (diff)
downloadopie-1e9e3371d61cfc404329a8bad51f8b061c1ad73d.zip
opie-1e9e3371d61cfc404329a8bad51f8b061c1ad73d.tar.gz
opie-1e9e3371d61cfc404329a8bad51f8b061c1ad73d.tar.bz2
reenable sounds now that they work on the Z again
Diffstat (limited to 'noncore/multimedia/camera/gui/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/camera/gui/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/camera/gui/mainwindow.cpp b/noncore/multimedia/camera/gui/mainwindow.cpp
index 49c7cbf..0854f0d 100644
--- a/noncore/multimedia/camera/gui/mainwindow.cpp
+++ b/noncore/multimedia/camera/gui/mainwindow.cpp
@@ -457,13 +457,13 @@ void CameraMainWindow::performCapture( const QString& format )
}
}
void CameraMainWindow::startVideoCapture()
{
- //ODevice::inst()->touchSound();
+ ODevice::inst()->touchSound();
ODevice::inst()->setLedState( Led_Mail, Led_BlinkSlow );
_capturefd = ::open( CAPTUREFILE, O_WRONLY | O_CREAT | O_TRUNC );
if ( _capturefd == -1 )
{
owarn << "can't open capture file: " << strerror(errno) << oendl;
@@ -499,13 +499,13 @@ void CameraMainWindow::timerEvent( QTimerEvent* )
}
void CameraMainWindow::stopVideoCapture()
{
killTimers();
- //ODevice::inst()->touchSound();
+ ODevice::inst()->touchSound();
ODevice::inst()->setLedState( Led_Mail, Led_Off );
_capturing = false;
updateCaption();
::close( _capturefd );
_framerate = 1000.0 / (_time.elapsed()/_videopics);