author | llornkcor <llornkcor> | 2004-05-20 08:02:37 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-05-20 08:02:37 (UTC) |
commit | 47245723b724beb24183aa32b047d77f3469b7df (patch) (side-by-side diff) | |
tree | c20cc2984589db4f9888163018d1ce647af59518 | |
parent | 7ee7f26e39ef6c3ed164f307c1c3906961c1b189 (diff) | |
download | opie-47245723b724beb24183aa32b047d77f3469b7df.zip opie-47245723b724beb24183aa32b047d77f3469b7df.tar.gz opie-47245723b724beb24183aa32b047d77f3469b7df.tar.bz2 |
always compile before commit
-rw-r--r-- | noncore/multimedia/powerchord/powerchordbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/powerchord/powerchordbase.cpp b/noncore/multimedia/powerchord/powerchordbase.cpp index 92198bf..98fe3f7 100644 --- a/noncore/multimedia/powerchord/powerchordbase.cpp +++ b/noncore/multimedia/powerchord/powerchordbase.cpp @@ -384,33 +384,33 @@ PowerchordBase::PowerchordBase( QWidget* parent, const char* name, WFlags fl ) connect( frets, SIGNAL( s1nameChanged(const QString&) ), s1_1, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( s2nameChanged(const QString&) ), s1_2, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( s3nameChanged(const QString&) ), s1_3, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( s4nameChanged(const QString&) ), s1_4, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( s5nameChanged(const QString&) ), s1_5, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( s6nameChanged(const QString&) ), s1_6, SLOT( setText(const QString&) ) ); connect( frets, SIGNAL( nameChanged(const QString&) ), chordname, SLOT( setText(const QString&) ) ); } static int known=0; #include <qmessagebox.h> void PowerchordBase::transport_rec_cb(){ chordlist->insertItem(chordname->text(),-1); if (!known){ QMessageBox::information(this, tr("Powerchord"), - tr("<P>This chord has been saved into the list of chords, for later playback.<P>"); + tr("<P>This chord has been saved into the list of chords, for later playback.<P>")); known = 1; } } void PowerchordBase::list_remove_cb(){ if (chordlist->count() > 0){ chordlist->removeItem(0); } } void PowerchordBase::play_chord_cb(){ // QMessageBox::information(this, "Coming soon!", "This button plays\nthe chord by synthesizing\nthe sound of the notes."); if (audio_timer){ audio_timer->stop(); // set pixmap? synth->Stop(); |