diff options
| author | Tim E. Real <termtech@rogers.com> | 2010-11-21 05:25:07 +0000 | 
|---|---|---|
| committer | Tim E. Real <termtech@rogers.com> | 2010-11-21 05:25:07 +0000 | 
| commit | a38c9eb67ad8d75f3c6e5de7d6ccc83727ff5996 (patch) | |
| tree | 33bcacef807ca1924c1ef2122dd77d6469dcdd0c /muse2/muse | |
| parent | 61c550c572cb174d43cd2b54e034480bbd27cd22 (diff) | |
Tooltip conversions.
Diffstat (limited to 'muse2/muse')
| -rw-r--r-- | muse2/muse/appearance.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/muse2/muse/appearance.cpp b/muse2/muse/appearance.cpp index 532300d6..55e248fa 100644 --- a/muse2/muse/appearance.cpp +++ b/muse2/muse/appearance.cpp @@ -64,14 +64,14 @@ Appearance::Appearance(Arranger* a, QWidget* parent)        color  = 0;        config = new GlobalConfigValues; -      QToolTip::add(fontName0, tr("Main application font, and default font for any\n controls not defined here.")); -      QToolTip::add(fontName1, tr("For small controls like mixer strips.\nAlso timescale small numbers, arranger part name overlay,\n and effects rack.")); -      QToolTip::add(fontName2, tr("Midi track info panel. Transport controls.")); -      QToolTip::add(fontName3, tr("Controller graph and S/X buttons. Large numbers for time\n and tempo scale, and time signature.")); -      QToolTip::add(fontName4, tr("Time scale markers.")); -      QToolTip::add(fontName5, tr("List editor: meta event edit dialog multi-line edit box.")); -      QToolTip::add(fontName6, tr("Mixer label font. Auto-font-sizing up to chosen font size.\nWord-breaking but only with spaces.")); -      QToolTip::add(fontSize6, tr("Maximum mixer label auto-font-sizing font size.")); +      fontName0->setToolTip(tr("Main application font, and default font for any\n controls not defined here.")); +      fontName1->setToolTip(tr("For small controls like mixer strips.\nAlso timescale small numbers, arranger part name overlay,\n and effects rack.")); +      fontName2->setToolTip(tr("Midi track info panel. Transport controls.")); +      fontName3->setToolTip(tr("Controller graph and S/X buttons. Large numbers for time\n and tempo scale, and time signature.")); +      fontName4->setToolTip(tr("Time scale markers.")); +      fontName5->setToolTip(tr("List editor: meta event edit dialog multi-line edit box.")); +      fontName6->setToolTip(tr("Mixer label font. Auto-font-sizing up to chosen font size.\nWord-breaking but only with spaces.")); +      fontSize6->setToolTip(tr("Maximum mixer label auto-font-sizing font size."));        // ARRANGER | 
