Changeset 8232 in ntrip for trunk/BNC


Ignore:
Timestamp:
Jan 4, 2018, 12:48:38 PM (6 years ago)
Author:
wiese
Message:

CHANGE: #105 QT5

QUrl setPath

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r8171 r8232  
    22402240////////////////////////////////////////////////////////////////////////////
    22412241void bncWindow::slotHelp() {
    2242   QUrl url;
    2243   url.setPath(":bnchelp.html");
     2242  QUrl url = QUrl::fromLocalFile(":bnchelp.html");
    22442243  new bncHlpDlg(0, url);
    22452244}
     
    23402339
    23412340  QTextBrowser* tb = new QTextBrowser;
    2342   QUrl url; url.setPath(":bncabout.html");
     2341  QUrl url = QUrl::fromLocalFile(":bncabout.html");
    23432342  tb->setSource(url);
    23442343  tb->setReadOnly(true);
Note: See TracChangeset for help on using the changeset viewer.