Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2022-03-02 17:24:04 +0300
committerGhostkeeper <rubend@tutanota.com>2022-03-02 17:24:04 +0300
commit1ce6219d684add603b45aa92fe1651ad86aeedb5 (patch)
tree7e376ed65efc09d2b72a1cca3ff5a1119f1256b2
parent4eae16218284372dcd03eb0fde8849088029eee6 (diff)
parent7aade01aa4ff3658c10bf2257d5034dd2f047282 (diff)
Merge branch 'CURA-7924_update_to_sip6' into PyQt6_upgradePyQt6_upgrade
-rw-r--r--src/communication/Listener.cpp2
-rw-r--r--src/communication/Listener.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/communication/Listener.cpp b/src/communication/Listener.cpp
index 42217a403..ea501c9ae 100644
--- a/src/communication/Listener.cpp
+++ b/src/communication/Listener.cpp
@@ -11,7 +11,7 @@
namespace cura
{
-void Listener::stateChanged(Arcus::SocketState::SocketState)
+void Listener::stateChanged(Arcus::SocketState)
{
//Do nothing.
}
diff --git a/src/communication/Listener.h b/src/communication/Listener.h
index bd697928a..c20752356 100644
--- a/src/communication/Listener.h
+++ b/src/communication/Listener.h
@@ -20,7 +20,7 @@ public:
/*
* Changes the ``stateChanged`` signal to do nothing.
*/
- void stateChanged(Arcus::SocketState::SocketState) override;
+ void stateChanged(Arcus::SocketState) override;
/*
* Changes the ``messageReceived`` signal to do nothing.