diff options
author | Adam Tkac <atkac@redhat.com> | 2008-11-14 14:48:21 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-11-14 14:48:21 +0000 |
commit | 20e0d711fdc2cdb2df7f3d4447c27832e982a24b (patch) | |
tree | 6e42638de13bef6d310cd8606aeb5c76d3d69f8a /common/rfb | |
parent | 247b729032ac7add40daa29a0d981a55e09c4343 (diff) | |
download | tigervnc-20e0d711fdc2cdb2df7f3d4447c27832e982a24b.tar.gz tigervnc-20e0d711fdc2cdb2df7f3d4447c27832e982a24b.zip |
[Refactoring] Improved rdr::Exception constructor. It now accepts variable
number of arguments.
[Bugfix] Minor compilation fixes (missing #includes)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3168 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb')
-rw-r--r-- | common/rfb/CMsgReaderV3.cxx | 1 | ||||
-rw-r--r-- | common/rfb/ComparingUpdateTracker.cxx | 1 | ||||
-rw-r--r-- | common/rfb/ConnParams.cxx | 1 | ||||
-rw-r--r-- | common/rfb/SMsgReaderV3.cxx | 2 | ||||
-rw-r--r-- | common/rfb/TransImageGetter.cxx | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/common/rfb/CMsgReaderV3.cxx b/common/rfb/CMsgReaderV3.cxx index d0cfc89f..ae5f4557 100644 --- a/common/rfb/CMsgReaderV3.cxx +++ b/common/rfb/CMsgReaderV3.cxx @@ -22,6 +22,7 @@ #include <rfb/CMsgReaderV3.h> #include <rfb/CMsgHandler.h> #include <rfb/util.h> +#include <stdio.h> using namespace rfb; diff --git a/common/rfb/ComparingUpdateTracker.cxx b/common/rfb/ComparingUpdateTracker.cxx index ec323020..671e6ee8 100644 --- a/common/rfb/ComparingUpdateTracker.cxx +++ b/common/rfb/ComparingUpdateTracker.cxx @@ -16,6 +16,7 @@ * USA. */ #include <stdio.h> +#include <string.h> #include <vector> #include <rdr/types.h> #include <rfb/Exception.h> diff --git a/common/rfb/ConnParams.cxx b/common/rfb/ConnParams.cxx index 42134c3c..446c3ad5 100644 --- a/common/rfb/ConnParams.cxx +++ b/common/rfb/ConnParams.cxx @@ -15,6 +15,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. */ +#include <stdio.h> #include <rdr/InStream.h> #include <rdr/OutStream.h> #include <rfb/Exception.h> diff --git a/common/rfb/SMsgReaderV3.cxx b/common/rfb/SMsgReaderV3.cxx index 37070a86..da012c6c 100644 --- a/common/rfb/SMsgReaderV3.cxx +++ b/common/rfb/SMsgReaderV3.cxx @@ -15,6 +15,8 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. */ + +#include <stdio.h> #include <rfb/PixelFormat.h> #include <rfb/msgTypes.h> #include <rfb/Exception.h> diff --git a/common/rfb/TransImageGetter.cxx b/common/rfb/TransImageGetter.cxx index 82c291b6..c7d730f0 100644 --- a/common/rfb/TransImageGetter.cxx +++ b/common/rfb/TransImageGetter.cxx @@ -17,6 +17,7 @@ */ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <rfb/PixelFormat.h> #include <rfb/Exception.h> #include <rfb/ConnParams.h> |