Skip to content
Snippets Groups Projects
Unverified Commit 35f62138 authored by Burak Hançerli's avatar Burak Hançerli :headphones:
Browse files

fix: remove unnecessary string-number conversions

parent 761d3487
No related branches found
No related tags found
1 merge request!22QDS-11332 Implement better qmlproject handling
Pipeline #64608 passed
<?xml version="1.0"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.qt.qtuiviewer"
android:installLocation="auto" android:versionCode="15" android:versionName="1.2">
android:installLocation="auto" android:versionCode="16" android:versionName="1.2">
<!-- %%INSERT_PERMISSIONS -->
<!-- %%INSERT_FEATURES -->
<supports-screens android:anyDensity="true" android:largeScreens="true"
......
......@@ -88,7 +88,7 @@ QString ProjectManager::unpackProject(const QByteArray &project, bool extractZip
const uchar *data;
if (m_projectData.size()) {
qDebug() << "Unregistering the previous data from QRC system. Path: " << m_projectPath
<< " Size: " << QString::number(m_projectData.size()) << " bytes.";
<< " Size: " << m_projectData.size() << " bytes.";
data = reinterpret_cast<const uchar *>(m_projectData.data());
if (!QResource::unregisterResource(data, m_projectPath)) {
qCritical("Cannot unregister the previous resource data.");
......@@ -97,7 +97,7 @@ QString ProjectManager::unpackProject(const QByteArray &project, bool extractZip
m_projectData = project;
data = reinterpret_cast<const uchar *>(m_projectData.data());
qDebug() << "Registering resource data. Size: " << QString::number(m_projectData.size());
qDebug() << "Registering resource data. Size: " << m_projectData.size();
const QString resourcePath{"/" + QString::number(QRandomGenerator::global()->generate())};
m_projectPath = resourcePath;
......
......@@ -183,7 +183,6 @@ Rectangle {
Layout.fillWidth: true
checkable: true
autoExclusive: true
Connections {
target: logs
function onClicked(){
......@@ -198,6 +197,7 @@ Rectangle {
Layout.fillWidth: true
checkable: true
autoExclusive: true
visible: false;
Connections {
target: network
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment