Changeset 169 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Sep 14, 2006, 3:52:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r168 r169 419 419 void bncWindow::slotAbout() { 420 420 421 QString str(422 #include "bncabout.html"423 );424 425 421 QTextBrowser* tb = new QTextBrowser; 426 tb->setHtml(str); 422 QUrl url; url.setPath(":bncabout.html"); 423 tb->setSource(url); 427 424 tb->setReadOnly(true); 428 425 … … 446 443 void bncWindow::slotHelp() { 447 444 448 QString str(449 #include "bnchelp.html"450 );451 452 445 bncHtml* tb = new bncHtml; 453 tb->setHtml(str); 446 QUrl url; url.setPath(":bnchelp.html"); 447 tb->setSource(url); 454 448 tb->setReadOnly(true); 455 449
Note:
See TracChangeset
for help on using the changeset viewer.