summaryrefslogtreecommitdiff
authorandyq <andyq>2003-01-05 22:22:01 (UTC)
committer andyq <andyq>2003-01-05 22:22:01 (UTC)
commit87a077b4ab289e693dcef90664669e895cab0c9f (patch) (side-by-side diff)
treea76ef2f0cf1f7bbf065ae5bc1e2e7561a30c9533
parent13c9d1da75f4caa252f0cffca032ce3bc884a75b (diff)
downloadopie-87a077b4ab289e693dcef90664669e895cab0c9f.zip
opie-87a077b4ab289e693dcef90664669e895cab0c9f.tar.gz
opie-87a077b4ab289e693dcef90664669e895cab0c9f.tar.bz2
Changed AQPkg reference to SFCave
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/sfcave/helpwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/games/sfcave/helpwindow.cpp b/noncore/games/sfcave/helpwindow.cpp
index aa15ac6..c920312 100644
--- a/noncore/games/sfcave/helpwindow.cpp
+++ b/noncore/games/sfcave/helpwindow.cpp
@@ -41,39 +41,39 @@
"Basic instruction - Press <b>Up</B> or <b>Down</b> on the circle pad to " \
"start a new game, press the middle of the pad to apply thrust (makes you " \
"go up), and release the pad to remove thrust and drop down.<br><br>" \
"Also, if playing the Fly game, you can press z to toggle the display " \
"of the scoring zones. This will display 4 red lines at varying heights " \
"above the landscape - if your ship falls into this zone, point are scored. " \
"The closer to the landscape you get the more points you get.<br><br>" \
"In addition, SFCave has replays - save and load too so you can show off to all " \
"your friends (or vice versa). Currently, this is in its infancy but will improve.<br>" \
"To use, once you have crashed, press 'r' to replay the last game.<br>" \
"To save the replay press 's'.<br>" \
"To load a saved replay press 'l' (after you've crashed at least once).<br><br>" \
"Replays are currently saved to your home directory in a file called sfcave.replay." \
"This file can be copied and given to others as long as it it put in their home directory.<br><br>" \
"Have lots of fun.<br>" \
"Andy" \
"</p></qt>"
HelpWindow::HelpWindow( QWidget *parent, const char *name, bool modal, WFlags flags )
: QDialog( parent, name, modal, flags )
{
// resize( 230, 280 );
- setCaption( "Help for AQPkg" );
+ setCaption( "Help for SFCave" );
QVBoxLayout *layout = new QVBoxLayout( this );
QString text = HELP_TEXT;;
QTextView *view = new QTextView( text, 0, this, "view" );
layout->insertSpacing( -1, 5 );
layout->insertWidget( -1, view );
layout->insertSpacing( -1, 5 );
showMaximized();
}
HelpWindow::~HelpWindow()
{
}