const more args

This commit is contained in:
Rasmus Karlsson 2024-01-16 10:36:30 +01:00
parent 3eb4a144fc
commit dac2ef3a9e
2 changed files with 6 additions and 6 deletions

View file

@ -34,11 +34,11 @@ namespace chatterino {
using namespace literals; using namespace literals;
void registerNmManifest(Paths &paths, const QString &manifestFilename, void registerNmManifest(const Paths &paths, const QString &manifestFilename,
const QString &registryKeyName, const QString &registryKeyName,
const QJsonDocument &document); const QJsonDocument &document);
void registerNmHost(Paths &paths) void registerNmHost(const Paths &paths)
{ {
if (paths.isPortable()) if (paths.isPortable())
{ {
@ -80,7 +80,7 @@ void registerNmHost(Paths &paths)
} }
} }
void registerNmManifest(Paths &paths, const QString &manifestFilename, void registerNmManifest(const Paths &paths, const QString &manifestFilename,
const QString &registryKeyName, const QString &registryKeyName,
const QJsonDocument &document) const QJsonDocument &document)
{ {
@ -99,7 +99,7 @@ void registerNmManifest(Paths &paths, const QString &manifestFilename,
#endif #endif
} }
std::string &getNmQueueName(Paths &paths) std::string &getNmQueueName(const Paths &paths)
{ {
static std::string name = static std::string name =
"chatterino_gui" + paths.applicationFilePathHash.toStdString(); "chatterino_gui" + paths.applicationFilePathHash.toStdString();

View file

@ -16,8 +16,8 @@ class Channel;
using ChannelPtr = std::shared_ptr<Channel>; using ChannelPtr = std::shared_ptr<Channel>;
void registerNmHost(Paths &paths); void registerNmHost(const Paths &paths);
std::string &getNmQueueName(Paths &paths); std::string &getNmQueueName(const Paths &paths);
Atomic<std::optional<QString>> &nmIpcError(); Atomic<std::optional<QString>> &nmIpcError();