author | waspe <waspe> | 2003-11-16 19:47:24 (UTC) |
---|---|---|
committer | waspe <waspe> | 2003-11-16 19:47:24 (UTC) |
commit | ec20edfb25997783eb5eac54289b71929b694b87 (patch) (unidiff) | |
tree | ddb3713d006a7c0756b7c5d2958c58b29e83a1a9 | |
parent | 7253dc2e2e4bcdd630f9ec66a0623d8b097077ba (diff) | |
download | opie-ec20edfb25997783eb5eac54289b71929b694b87.zip opie-ec20edfb25997783eb5eac54289b71929b694b87.tar.gz opie-ec20edfb25997783eb5eac54289b71929b694b87.tar.bz2 |
made text fit on small pda screen
-rw-r--r-- | noncore/multimedia/tonleiter/menuwidget.cpp | 4 |
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 | |||
8 | { | 8 | { |
9 | QGridLayout* layout=new QGridLayout(this,3,3,10,-1,"menulayout"); | 9 | QGridLayout* layout=new QGridLayout(this,3,3,10,-1,"menulayout"); |
10 | 10 | ||
11 | QLabel* instLabel=new QLabel(tr("Instrument"),this,"instLabel"); | 11 | QLabel* instLabel=new QLabel(tr("Instr."),this,"instLabel"); |
12 | layout->addWidget(instLabel,0,0); | 12 | layout->addWidget(instLabel,0,0); |
13 | boxInst=new QComboBox(this,"boxInst"); | 13 | boxInst=new QComboBox(this,"boxInst"); |
14 | connect(boxInst,SIGNAL(activated(int)),data,SLOT(setCurrentInstrumetID(int))); | 14 | connect(boxInst,SIGNAL(activated(int)),data,SLOT(setCurrentInstrumetID(int))); |
@@ -24,7 +24,7 @@ MenuWidget::MenuWidget(TonleiterData* data,QWidget* parent,const char* name,WFla | |||
24 | for(int a=0;a<12;a++) | 24 | for(int a=0;a<12;a++) |
25 | boxNote->insertItem(Note::notenames[a],a); | 25 | boxNote->insertItem(Note::notenames[a],a); |
26 | boxNote->setCurrentItem(data->getCurrentBaseNote()); | 26 | boxNote->setCurrentItem(data->getCurrentBaseNote()); |
27 | noteCheck=new QCheckBox(tr("show notes"),this,"noteCheck"); | 27 | noteCheck=new QCheckBox(tr("show"),this,"noteCheck"); |
28 | noteCheck->setChecked(data->isDrawNames()); | 28 | noteCheck->setChecked(data->isDrawNames()); |
29 | connect(noteCheck,SIGNAL(toggled(bool)),data,SLOT(setDrawNames(bool))); | 29 | connect(noteCheck,SIGNAL(toggled(bool)),data,SLOT(setDrawNames(bool))); |
30 | layout->addWidget(noteCheck,1,2); | 30 | layout->addWidget(noteCheck,1,2); |