summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-07-12 16:03:06 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-07-12 16:03:06 +0000
commit41594cfda81b453c0c39693be9623eb26d1bfb3e (patch)
treedb613f1b651bf3f11f59f57ac01e10a7b069a1bd /cppe/src
parentFix bogus check in (diff)
downloadice-41594cfda81b453c0c39693be9623eb26d1bfb3e.tar.bz2
ice-41594cfda81b453c0c39693be9623eb26d1bfb3e.tar.xz
ice-41594cfda81b453c0c39693be9623eb26d1bfb3e.zip
added WINCE install notes.
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/IceE/TraceLevels.cpp5
-rw-r--r--cppe/src/IceE/TraceLevels.h3
2 files changed, 1 insertions, 7 deletions
diff --git a/cppe/src/IceE/TraceLevels.cpp b/cppe/src/IceE/TraceLevels.cpp
index 0f4872fe898..1dc8683ba4d 100644
--- a/cppe/src/IceE/TraceLevels.cpp
+++ b/cppe/src/IceE/TraceLevels.cpp
@@ -25,14 +25,11 @@ IceInternal::TraceLevels::TraceLevels(const PropertiesPtr& properties) :
retry(0),
retryCat("Retry"),
location(0),
- locationCat("Location"),
- slicing(0),
- slicingCat("Slicing")
+ locationCat("Location")
{
const string keyBase = "IceE.Trace.";
const_cast<int&>(network) = properties->getPropertyAsInt(keyBase + networkCat);
const_cast<int&>(protocol) = properties->getPropertyAsInt(keyBase + protocolCat);
const_cast<int&>(retry) = properties->getPropertyAsInt(keyBase + retryCat);
const_cast<int&>(location) = properties->getPropertyAsInt(keyBase + locationCat);
- const_cast<int&>(slicing) = properties->getPropertyAsInt(keyBase + slicingCat);
}
diff --git a/cppe/src/IceE/TraceLevels.h b/cppe/src/IceE/TraceLevels.h
index e4f8e4249bf..63c8ebe824c 100644
--- a/cppe/src/IceE/TraceLevels.h
+++ b/cppe/src/IceE/TraceLevels.h
@@ -34,9 +34,6 @@ public:
const int location;
const char* locationCat;
-
- const int slicing;
- const char* slicingCat;
};
}