Changeset 8127 in ntrip for trunk/BNC/src/bnctabledlg.cpp


Ignore:
Timestamp:
May 10, 2017, 3:20:54 PM (7 years ago)
Author:
stoecker
Message:

update qwt and qwtpolar, many QT5 fixes (unfinished)

File:
1 edited

Legend:

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

    r7680 r8127  
    4040
    4141#include <iostream>
     42#include <QHeaderView>
     43#include <QLabel>
     44#include <QLineEdit>
     45#include <QMessageBox>
     46#include <QVBoxLayout>
    4247
    4348#include "bnctabledlg.h"
     
    492497    if (url.host() == newHost) {
    493498      _casterUserLineEdit->setText(
    494                 QUrl::fromPercentEncoding(url.userName().toAscii()));
     499                QUrl::fromPercentEncoding(url.userName().toLatin1()));
    495500      _casterPasswordLineEdit->setText(
    496                 QUrl::fromPercentEncoding(url.password().toAscii()));
     501                QUrl::fromPercentEncoding(url.password().toLatin1()));
    497502      if (url.port() > 0) {
    498503        _casterPortLineEdit->setText(QString("%1").arg(url.port()));
Note: See TracChangeset for help on using the changeset viewer.