aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2025-03-03 17:11:29 +0100
committerPierre Ossman <ossman@cendio.se>2025-03-03 17:11:29 +0100
commita3c325cf9e5ce00eea703e636e5c8dd56f4763ba (patch)
tree8f0eb4bc339733e3c7d04cb53ff5480ce98be2b9
parent4de3808c4388ec63981502170a75588a7d415d4f (diff)
downloadtigervnc-a3c325cf9e5ce00eea703e636e5c8dd56f4763ba.tar.gz
tigervnc-a3c325cf9e5ce00eea703e636e5c8dd56f4763ba.zip
Fix bad forward declarations of StringParameter
This should have been done as part of cf1bc66.
-rw-r--r--common/rfb/SSecurityPlain.h2
-rw-r--r--common/rfb/SSecurityTLS.h2
-rw-r--r--unix/x0vncserver/Geometry.h2
3 files changed, 1 insertions, 5 deletions
diff --git a/common/rfb/SSecurityPlain.h b/common/rfb/SSecurityPlain.h
index b735e302..d282eb7e 100644
--- a/common/rfb/SSecurityPlain.h
+++ b/common/rfb/SSecurityPlain.h
@@ -25,8 +25,6 @@
namespace rfb {
- class StringParameter;
-
class PasswordValidator {
public:
bool validate(SConnection* sc, const char *username, const char *password)
diff --git a/common/rfb/SSecurityTLS.h b/common/rfb/SSecurityTLS.h
index e899cff2..7e80117c 100644
--- a/common/rfb/SSecurityTLS.h
+++ b/common/rfb/SSecurityTLS.h
@@ -47,8 +47,6 @@ namespace rdr {
namespace rfb {
- class StringParameter;
-
class SSecurityTLS : public SSecurity {
public:
SSecurityTLS(SConnection* sc, bool _anon);
diff --git a/unix/x0vncserver/Geometry.h b/unix/x0vncserver/Geometry.h
index 284fbfbd..709d5e35 100644
--- a/unix/x0vncserver/Geometry.h
+++ b/unix/x0vncserver/Geometry.h
@@ -25,7 +25,7 @@
#include <core/Rect.h>
-namespace rfb { class StringParameter; }
+namespace core { class StringParameter; }
class Geometry
{