aboutsummaryrefslogtreecommitdiff
path: root/launcher/net
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2023-06-01 20:47:03 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2023-06-25 11:09:26 -0700
commit3105f314cb5cbc6c1e040ceab0f776a0e39849d4 (patch)
treebf96b3b7248794520f9c72164504a5b27752b098 /launcher/net
parent6db906d62378a040e55c35f196d208bed7aebbef (diff)
downloadPrismLauncher-3105f314cb5cbc6c1e040ceab0f776a0e39849d4.tar.gz
PrismLauncher-3105f314cb5cbc6c1e040ceab0f776a0e39849d4.tar.bz2
PrismLauncher-3105f314cb5cbc6c1e040ceab0f776a0e39849d4.zip
fix: class rename (lsp acitons undid the first rename :P)
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/net')
-rw-r--r--launcher/net/RawHeaderProxy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/net/RawHeaderProxy.h b/launcher/net/RawHeaderProxy.h
index ffe6a81a..c1aea0a8 100644
--- a/launcher/net/RawHeaderProxy.h
+++ b/launcher/net/RawHeaderProxy.h
@@ -25,10 +25,10 @@
namespace Net {
-class ApiHeaderProxy : public HeaderProxy {
+class RawHeaderProxy : public HeaderProxy {
public:
- ApiHeaderProxy() : HeaderProxy(){};
- virtual ~ApiHeaderProxy() = default;
+ RawHeaderProxy() : HeaderProxy(){};
+ virtual ~RawHeaderProxy() = default;
public:
virtual QList<HeaderPair> headers(const QNetworkRequest&) const override { return m_headers; };