diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-04 16:47:00 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-05 08:19:31 -0700 |
commit | 44583734886db665ea3d5964a1b2705fe0a0f4b6 (patch) | |
tree | 27fb5cd8bea3c9a52379674241c17e300e9a91c4 /core/qthelper.cpp | |
parent | 7343fe4cc6e364dd3be8f2af4efd9f3a2d748c58 (diff) | |
download | subsurface-44583734886db665ea3d5964a1b2705fe0a0f4b6.tar.gz |
Cleanup: remove bogus code that slipped in earlier
Commit df4fbf7699 ("Android: force different font on OnePlus devices")
inadvertantly added this hunk - let's undo it again.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/qthelper.cpp')
-rw-r--r-- | core/qthelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index 671ba6885..8082db742 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1399,7 +1399,7 @@ QString getUUID() uuidString = uuid.toString(); qPrefUpdateManager::set_uuidString(uuidString); } - uuidString.replace("{", "p").replace("}", ""); + uuidString.replace("{", "").replace("}", ""); return uuidString; } |