summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/tonleiter/menuwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/tonleiter/menuwidget.cpp b/noncore/multimedia/tonleiter/menuwidget.cpp
index 9cc2c6b..3dfa09d 100644
--- a/noncore/multimedia/tonleiter/menuwidget.cpp
+++ b/noncore/multimedia/tonleiter/menuwidget.cpp
@@ -8,7 +8,7 @@ MenuWidget::MenuWidget(TonleiterData* data,QWidget* parent,const char* name,WFla
{
QGridLayout* layout=new QGridLayout(this,3,3,10,-1,"menulayout");
- QLabel* instLabel=new QLabel(tr("Instrument"),this,"instLabel");
+ QLabel* instLabel=new QLabel(tr("Instr."),this,"instLabel");
layout->addWidget(instLabel,0,0);
boxInst=new QComboBox(this,"boxInst");
connect(boxInst,SIGNAL(activated(int)),data,SLOT(setCurrentInstrumetID(int)));
@@ -24,7 +24,7 @@ MenuWidget::MenuWidget(TonleiterData* data,QWidget* parent,const char* name,WFla
for(int a=0;a<12;a++)
boxNote->insertItem(Note::notenames[a],a);
boxNote->setCurrentItem(data->getCurrentBaseNote());
- noteCheck=new QCheckBox(tr("show notes"),this,"noteCheck");
+ noteCheck=new QCheckBox(tr("show"),this,"noteCheck");
noteCheck->setChecked(data->isDrawNames());
connect(noteCheck,SIGNAL(toggled(bool)),data,SLOT(setDrawNames(bool)));
layout->addWidget(noteCheck,1,2);