forked from qt-creator/qt-creator
Core: Build with QT_NO_CAST_FROM_ASCII
Change-Id: If8e5d9ce875f8467a7699b791e5ec962baf8ff38 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
TEMPLATE = lib
|
||||
TARGET = Core
|
||||
DEFINES += CORE_LIBRARY
|
||||
DEFINES += CORE_LIBRARY \
|
||||
QT_NO_CAST_FROM_ASCII
|
||||
QT += network \
|
||||
script \
|
||||
sql
|
||||
|
||||
@@ -32,6 +32,7 @@ QtcPlugin {
|
||||
]
|
||||
}
|
||||
|
||||
cpp.defines: base.concat([ "QT_NO_CAST_FROM_ASCII" ])
|
||||
files: [
|
||||
"basefilewizard.cpp",
|
||||
"basefilewizard.h",
|
||||
|
||||
@@ -766,14 +766,14 @@ void SplitterOrView::unsplit()
|
||||
if (parentSplitter) { // not the toplevel splitterOrView
|
||||
if (parentSplitter->orientation() == Qt::Horizontal) {
|
||||
if (parentSplitter->widget(0) == this)
|
||||
m_view->setCloseSplitIcon(QIcon(Constants::ICON_CLOSE_SPLIT_LEFT));
|
||||
m_view->setCloseSplitIcon(QIcon(QLatin1String(Constants::ICON_CLOSE_SPLIT_LEFT)));
|
||||
else
|
||||
m_view->setCloseSplitIcon(QIcon(Constants::ICON_CLOSE_SPLIT_RIGHT));
|
||||
m_view->setCloseSplitIcon(QIcon(QLatin1String(Constants::ICON_CLOSE_SPLIT_RIGHT)));
|
||||
} else {
|
||||
if (parentSplitter->widget(0) == this)
|
||||
m_view->setCloseSplitIcon(QIcon(Constants::ICON_CLOSE_SPLIT_TOP));
|
||||
m_view->setCloseSplitIcon(QIcon(QLatin1String(Constants::ICON_CLOSE_SPLIT_TOP)));
|
||||
else
|
||||
m_view->setCloseSplitIcon(QIcon(Constants::ICON_CLOSE_SPLIT_BOTTOM));
|
||||
m_view->setCloseSplitIcon(QIcon(QLatin1String(Constants::ICON_CLOSE_SPLIT_BOTTOM)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -189,7 +189,7 @@ MainWindow::MainWindow() :
|
||||
if (Utils::HostOsInfo::isAnyUnixHost() && !Utils::HostOsInfo::isMacHost()) {
|
||||
if (baseName == QLatin1String("windows")) {
|
||||
// Sometimes we get the standard windows 95 style as a fallback
|
||||
if (QStyleFactory::keys().contains("Fusion"))
|
||||
if (QStyleFactory::keys().contains(QLatin1String("Fusion")))
|
||||
baseName = QLatin1String("fusion"); // Qt5
|
||||
else { // Qt4
|
||||
// e.g. if we are running on a KDE4 desktop
|
||||
|
||||
@@ -633,7 +633,7 @@ OutputPaneToggleButton::OutputPaneToggleButton(int number, const QString &text,
|
||||
fnt.setPixelSize(11);
|
||||
m_label->setFont(fnt);
|
||||
m_label->setAlignment(Qt::AlignCenter);
|
||||
m_label->setStyleSheet("background-color: #818181; color: white; border-radius: 6; padding-left: 4; padding-right: 4;");
|
||||
m_label->setStyleSheet(QLatin1String("background-color: #818181; color: white; border-radius: 6; padding-left: 4; padding-right: 4;"));
|
||||
m_label->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||
m_label->hide();
|
||||
}
|
||||
@@ -700,9 +700,11 @@ void OutputPaneToggleButton::checkStateSet()
|
||||
m_flashTimer->stop();
|
||||
|
||||
if (isChecked())
|
||||
m_label->setStyleSheet("background-color: #e1e1e1; color: #606060; border-radius: 6; padding-left: 4; padding-right: 4;");
|
||||
m_label->setStyleSheet(QLatin1String("background-color: #e1e1e1; color: #606060; "
|
||||
"border-radius: 6; padding-left: 4; padding-right: 4;"));
|
||||
else
|
||||
m_label->setStyleSheet("background-color: #818181; color: white; border-radius: 6; padding-left: 4; padding-right: 4;");
|
||||
m_label->setStyleSheet(QLatin1String("background-color: #818181; color: white; border-radius: 6; "
|
||||
"padding-left: 4; padding-right: 4;"));
|
||||
}
|
||||
|
||||
void OutputPaneToggleButton::flash(int count)
|
||||
|
||||
@@ -60,7 +60,7 @@ VariableChooser::VariableChooser(QWidget *parent) :
|
||||
|
||||
VariableManager *vm = VariableManager::instance();
|
||||
foreach (const QByteArray &variable, vm->variables())
|
||||
ui->variableList->addItem(variable);
|
||||
ui->variableList->addItem(QString::fromLatin1(variable));
|
||||
|
||||
connect(ui->variableList, SIGNAL(currentTextChanged(QString)),
|
||||
this, SLOT(updateDescription(QString)));
|
||||
|
||||
Reference in New Issue
Block a user