version 1.43 [rursu]

- Qt_help_window class is in the CGAL namespace
This commit is contained in:
Radu Ursu 2003-09-10 08:22:07 +00:00
parent 279de97281
commit b3a4df65d7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,6 @@
version 1.43 [rursu]
- Qt_help_window class is in the CGAL namespace
version 1.42 [rursu]
- demo use the new help class Qt_help_window instead of HelpWindow
- demo use the new demoicon

View File

@ -215,7 +215,8 @@ private slots:
void howto(){
QString home;
home = "help/index.html";
Qt_help_window *help = new Qt_help_window(home, ".", 0, "help viewer");
CGAL::Qt_help_window *help = new
CGAL::Qt_help_window(home, ".", 0, "help viewer");
help->resize(400, 400);
help->setCaption("Demo HowTo");
help->show();