Changing dbV -> dBV throughout.

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@622 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Paul Wayper
2007-12-13 22:03:13 +00:00
parent 3b1f2d30b7
commit 9a42d65d0c
10 changed files with 30 additions and 26 deletions

View File

@@ -227,7 +227,7 @@ setupDialog::setupDialog( configTabs _tab_to_open ) :
this, SLOT( toggleWarnAfterSetup( bool ) ) );
ledCheckBox * dbv = new ledCheckBox( tr( "Display volume as dbV " ),
ledCheckBox * dbv = new ledCheckBox( tr( "Display volume as dBV " ),
misc_tw, NULL, NULL );
dbv->move( 10, 108 );
dbv->setChecked( m_displaydBV );

View File

@@ -2,7 +2,7 @@
/*
* volume_knob.cpp - defines a knob that display it's value as either a
* percentage or in dbV.
* percentage or in dBV.
*
* Copyright (c) 2006-2007 Danny McRae <khjklujn/at/users.sourceforge.net>
*
@@ -190,7 +190,7 @@ void volumeKnob::enterValue( void )
new_val = QInputDialog::getDouble(
this, accessibleName(),
tr( "Please enter a new value between "
"-96.0 dbV and 6.0 dbV:" ),
"-96.0 dBV and 6.0 dBV:" ),
20.0 * log10( value() / 100.0 ),
-96.0, 6.0, 4, &ok );
if( new_val <= -96.0 )