diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-04-07 13:04:32 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-05-01 10:48:00 -0700 |
commit | a80b4255515b1f3e61d12aeefcef6bf16ac4ee6b (patch) | |
tree | e37545ec6b8382369e35361a755d94c2a971fc73 /launcher/Application.h | |
parent | d7032d975cb71bbf69d1dcd6a916db85ceb7619c (diff) | |
download | PrismLauncher-a80b4255515b1f3e61d12aeefcef6bf16ac4ee6b.tar.gz PrismLauncher-a80b4255515b1f3e61d12aeefcef6bf16ac4ee6b.tar.bz2 PrismLauncher-a80b4255515b1f3e61d12aeefcef6bf16ac4ee6b.zip |
fix: no need for const bool
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/Application.h')
-rw-r--r-- | launcher/Application.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Application.h b/launcher/Application.h index 3d833edc..ced0af17 100644 --- a/launcher/Application.h +++ b/launcher/Application.h @@ -187,7 +187,7 @@ public: return m_rootPath; } - const bool isPortable() { + bool isPortable() { return m_portable; } |