Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lievenhey committed Aug 2, 2023
1 parent ab5c4fd commit bf1811e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/recordhost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <QProcess>
#include <QStandardPaths>
#include <QThread>
#include <qstringliteral.h>

#include <KShell>
#include <KUser>
Expand Down Expand Up @@ -156,7 +157,7 @@ RecordHost::RecordHost(QObject* parent)
connectIsReady(&RecordHost::pidsChanged);
connectIsReady(&RecordHost::currentWorkingDirectoryChanged);

setHost(QLatin1String("localhost"));
setHost(QStringLiteral("localhost"));
}

RecordHost::~RecordHost() { }
Expand Down
2 changes: 2 additions & 0 deletions src/recordpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ KConfigGroup config()

KConfigGroup applicationConfig(const QString& application)
{
if (application.isEmpty())
return {};
return config().group(QLatin1String("Application ") + KShell::tildeExpand(application));
}

Expand Down
2 changes: 1 addition & 1 deletion src/settingsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include "ui_callgraphsettingspage.h"
#include "ui_debuginfodpage.h"
#include "ui_flamegraphsettingspage.h"
#include "ui_sourcepathsettings.h"
#include "ui_perfsettingspage.h"
#include "ui_sourcepathsettings.h"
#include "ui_unwindsettingspage.h"

#include "multiconfigwidget.h"
Expand Down

0 comments on commit bf1811e

Please sign in to comment.