diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 23:14:04 +0900 |
commit | aa98dbfe80580169f3df12489a77e8b904a1d9b9 (patch) | |
tree | 483608a6346be3fa4d8f95d35a05952c81221b91 /dcop/dcopserver.cpp | |
parent | f29aa92d38e9e1f353ed48f7952150437db8c890 (diff) | |
download | tdelibs-aa98dbfe80580169f3df12489a77e8b904a1d9b9.tar.gz tdelibs-aa98dbfe80580169f3df12489a77e8b904a1d9b9.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcop/dcopserver.cpp')
-rw-r--r-- | dcop/dcopserver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dcop/dcopserver.cpp b/dcop/dcopserver.cpp index bacebfc49..ec6086f09 100644 --- a/dcop/dcopserver.cpp +++ b/dcop/dcopserver.cpp @@ -117,7 +117,7 @@ static Bool HostBasedAuthProc ( char* /*hostname*/) extern "C" { extern IceWriteHandler _kde_IceWriteHandler; extern IceIOErrorHandler _kde_IceIOErrorHandler; -void DCOPIceWriteChar(register IceConn iceConn, unsigned long nbytes, char *ptr); +void DCOPIceWriteChar(IceConn iceConn, unsigned long nbytes, char *ptr); } static TQCString readQCString(TQDataStream &ds) @@ -236,7 +236,7 @@ static unsigned long writeIceData(IceConn iceConn, unsigned long nbytes, char *p return 0; } -void DCOPIceWriteChar(register IceConn iceConn, unsigned long nbytes, char *ptr) +void DCOPIceWriteChar(IceConn iceConn, unsigned long nbytes, char *ptr) { DCOPConnection* conn = the_server->findConn( iceConn ); #ifdef DCOP_DEBUG @@ -383,7 +383,7 @@ tqWarning("[dcopserver] slotOutputRead() more data to send."); } } -static void DCOPIceSendData(register IceConn _iceConn, +static void DCOPIceSendData(IceConn _iceConn, const TQByteArray &_data) { if (_iceConn->outbufptr > _iceConn->outbuf) |