summaryrefslogtreecommitdiffstats
path: root/src/library/recording/dlgrecording.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/recording/dlgrecording.cpp')
-rw-r--r--src/library/recording/dlgrecording.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/recording/dlgrecording.cpp b/src/library/recording/dlgrecording.cpp
index 019a4c32b1..043a9fffd1 100644
--- a/src/library/recording/dlgrecording.cpp
+++ b/src/library/recording/dlgrecording.cpp
@@ -34,8 +34,8 @@ DlgRecording::DlgRecording(QWidget* parent, UserSettingsPointer pConfig,
connect(m_pRecordingManager, SIGNAL(isRecording(bool)),
this, SLOT(slotRecordingEnabled(bool)));
- connect(m_pRecordingManager, SIGNAL(bytesRecorded(long)),
- this, SLOT(slotBytesRecorded(long)));
+ connect(m_pRecordingManager, SIGNAL(bytesRecorded(int)),
+ this, SLOT(slotBytesRecorded(int)));
connect(m_pRecordingManager, SIGNAL(durationRecorded(QString)),
this, SLOT(slotDurationRecorded(QString)));
@@ -129,7 +129,7 @@ void DlgRecording::slotRecordingEnabled(bool isRecording) {
}
// gets number of recorded bytes and update label
-void DlgRecording::slotBytesRecorded(long bytes) {
+void DlgRecording::slotBytesRecorded(int bytes) {
double megabytes = bytes / 1048576.0;
m_bytesRecordedStr = QString::number(megabytes,'f',2);
refreshLabel();