summaryrefslogtreecommitdiff
path: root/noncore/games/sfcave/helpwindow.cpp
authorandyq <andyq>2003-01-05 22:22:01 (UTC)
committer andyq <andyq>2003-01-05 22:22:01 (UTC)
commit87a077b4ab289e693dcef90664669e895cab0c9f (patch) (unidiff)
treea76ef2f0cf1f7bbf065ae5bc1e2e7561a30c9533 /noncore/games/sfcave/helpwindow.cpp
parent13c9d1da75f4caa252f0cffca032ce3bc884a75b (diff)
downloadopie-87a077b4ab289e693dcef90664669e895cab0c9f.zip
opie-87a077b4ab289e693dcef90664669e895cab0c9f.tar.gz
opie-87a077b4ab289e693dcef90664669e895cab0c9f.tar.bz2
Changed AQPkg reference to SFCave
Diffstat (limited to 'noncore/games/sfcave/helpwindow.cpp') (more/less context) (show 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
@@ -53,25 +53,25 @@
53"Replays are currently saved to your home directory in a file called sfcave.replay." \ 53"Replays are currently saved to your home directory in a file called sfcave.replay." \
54"This file can be copied and given to others as long as it it put in their home directory.<br><br>" \ 54"This file can be copied and given to others as long as it it put in their home directory.<br><br>" \
55"Have lots of fun.<br>" \ 55"Have lots of fun.<br>" \
56"Andy" \ 56"Andy" \
57"</p></qt>" 57"</p></qt>"
58 58
59 59
60HelpWindow::HelpWindow( QWidget *parent, const char *name, bool modal, WFlags flags ) 60HelpWindow::HelpWindow( QWidget *parent, const char *name, bool modal, WFlags flags )
61 : QDialog( parent, name, modal, flags ) 61 : QDialog( parent, name, modal, flags )
62{ 62{
63// resize( 230, 280 ); 63// resize( 230, 280 );
64 64
65 setCaption( "Help for AQPkg" ); 65 setCaption( "Help for SFCave" );
66 66
67 QVBoxLayout *layout = new QVBoxLayout( this ); 67 QVBoxLayout *layout = new QVBoxLayout( this );
68 QString text = HELP_TEXT;; 68 QString text = HELP_TEXT;;
69 QTextView *view = new QTextView( text, 0, this, "view" ); 69 QTextView *view = new QTextView( text, 0, this, "view" );
70 layout->insertSpacing( -1, 5 ); 70 layout->insertSpacing( -1, 5 );
71 layout->insertWidget( -1, view ); 71 layout->insertWidget( -1, view );
72 layout->insertSpacing( -1, 5 ); 72 layout->insertSpacing( -1, 5 );
73 73
74 showMaximized(); 74 showMaximized();
75} 75}
76 76
77HelpWindow::~HelpWindow() 77HelpWindow::~HelpWindow()