aboutsummaryrefslogtreecommitdiff
path: root/src/protocoltelnet.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
committerMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
commit0975d66d2f06603f5e4016440b333aac88e2958a (patch)
treecd3767fb74c2475fd78bca9ff2d3ba825dd329f4 /src/protocoltelnet.h
parent17df4c2b9616c29865b0d893cc797d4938a660a2 (diff)
downloadlibbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.gz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.bz2
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.xz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.zip
Ok, now all the warnings are gone (except for those coming from nids, but that's
ok, nids is still in flux, they'll be gone soon).
Diffstat (limited to 'src/protocoltelnet.h')
-rw-r--r--src/protocoltelnet.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/protocoltelnet.h b/src/protocoltelnet.h
index 59004a0..532db4b 100644
--- a/src/protocoltelnet.h
+++ b/src/protocoltelnet.h
@@ -88,7 +88,7 @@ namespace Bu
88 * the line or not, the data will be cleared from the buffer when this 88 * the line or not, the data will be cleared from the buffer when this
89 * function returns, any changes made to the buffer will be destroyed. 89 * function returns, any changes made to the buffer will be destroyed.
90 */ 90 */
91 virtual void gotLine( Bu::FString &sLine ){}; 91 virtual void gotLine( Bu::FString & /*sLine*/ ){};
92 92
93 /** 93 /**
94 * Override this function to be notified of any new data that comes in 94 * Override this function to be notified of any new data that comes in
@@ -98,7 +98,7 @@ namespace Bu
98 * child class in this function, the buffer will never be cleared unless 98 * child class in this function, the buffer will never be cleared unless
99 * it happens in this function's override. 99 * it happens in this function's override.
100 */ 100 */
101 virtual void gotData( Bu::FString &sData ){}; 101 virtual void gotData( Bu::FString & /*sData*/ ){};
102 102
103 /** 103 /**
104 * Using this function to enable or disable canonical mode only affects 104 * Using this function to enable or disable canonical mode only affects
@@ -126,7 +126,7 @@ namespace Bu
126 * If you wish to know the current dimensions of the client window, 126 * If you wish to know the current dimensions of the client window,
127 * override this function, it will be called whenever the size changes. 127 * override this function, it will be called whenever the size changes.
128 */ 128 */
129 virtual void onSubNAWS( uint16_t iWidth, uint16_t iHeight ){}; 129 virtual void onSubNAWS( uint16_t /*iWidth*/, uint16_t /*iHeight*/ ){};
130 130
131 /** 131 /**
132 * This function is called whenever an unknown sub negotiation option is 132 * This function is called whenever an unknown sub negotiation option is
@@ -135,7 +135,8 @@ namespace Bu
135 * can handle it yourself if you'd like. Feel free to change the 135 * can handle it yourself if you'd like. Feel free to change the
136 * sSubBuf, it will be cleared as soon as this function returns anyway. 136 * sSubBuf, it will be cleared as soon as this function returns anyway.
137 */ 137 */
138 virtual void onSubUnknown( char cSubOpt, Bu::FString &sSubBuf ){}; 138 virtual void onSubUnknown( char /*cSubOpt*/,
139 Bu::FString & /*sSubBuf*/ ){};
139 140
140 private: 141 private:
141 /** 142 /**