summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSean M. Pappalardo <pegasus@renegadetech.com>2016-01-03 08:10:08 -0800
committerSean M. Pappalardo <pegasus@renegadetech.com>2016-01-03 08:10:08 -0800
commitefaa20ee8ab0a146c8fdb186baef144413d56d43 (patch)
treee9d8e645fc718de13e502bf2070c1518c85ba11b /src
parent3702b79b402374042220dcdb3a1e0deb58100652 (diff)
Correct 'built-in formats' variable spelling
Diffstat (limited to 'src')
-rw-r--r--src/dlgpreflibrary.cpp10
-rw-r--r--src/dlgpreflibrarydlg.ui2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/dlgpreflibrary.cpp b/src/dlgpreflibrary.cpp
index 6d44c1a0ab..e317666054 100644
--- a/src/dlgpreflibrary.cpp
+++ b/src/dlgpreflibrary.cpp
@@ -78,17 +78,17 @@ DlgPrefLibrary::DlgPrefLibrary(QWidget * parent,
m_pLibrary, SLOT(slotSetTrackTableRowHeight(int)));
// TODO(XXX) this string should be extracted from the soundsources
- QString buildInFormatsStr = "Ogg Vorbis, FLAC, WAVe, AIFF";
+ QString builtInFormatsStr = "Ogg Vorbis, FLAC, WAVe, AIFF";
#if defined(__MAD__) || defined(__APPLE__)
- buildInFormatsStr += ", MP3";
+ builtInFormatsStr += ", MP3";
#endif
#ifdef __OPUS__
- buildInFormatsStr += ", Opus";
+ builtInFormatsStr += ", Opus";
#endif
#ifdef _MODPLUG_
- buildInFormatsStr += ", ModPlug";
+ builtInFormatsStr += ", ModPlug";
#endif
- buildInFormats->setText(buildInFormatsStr);
+ builtInFormats->setText(builtInFormatsStr);
}
DlgPrefLibrary::~DlgPrefLibrary() {
diff --git a/src/dlgpreflibrarydlg.ui b/src/dlgpreflibrarydlg.ui
index 2f05211a8d..b0608a6419 100644
--- a/src/dlgpreflibrarydlg.ui
+++ b/src/dlgpreflibrarydlg.ui
@@ -117,7 +117,7 @@
</widget>
</item>
<item row="0" column="0">
- <widget class="QLabel" name="buildInFormats">
+ <widget class="QLabel" name="builtInFormats">
<property name="text">
<string>MP3, Ogg Vorbis, FLAC, Opus, WAVe, AIFF</string>
</property>