diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2012-08-06 15:02:52 +0200 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2012-08-06 15:03:43 +0200 |
commit | 5c0e6df23eeae7c836bd9cb548922ed53bc5b791 (patch) | |
tree | 9cf683ec4856d34a5ad3088bc7d5bf5a5a6be686 /sd/source/ui/remotecontrol/Transmitter.hxx | |
parent | 7eaabb2db296e2bdb67d633dd68209f23167243e (diff) |
Fixed scoped enums (for no C++0x).
Change-Id: I46759d420cac2a0975be45f20d1414c85979f5ed
Diffstat (limited to 'sd/source/ui/remotecontrol/Transmitter.hxx')
-rw-r--r-- | sd/source/ui/remotecontrol/Transmitter.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/Transmitter.hxx b/sd/source/ui/remotecontrol/Transmitter.hxx index 14da76f76f3f..b042454ca494 100644 --- a/sd/source/ui/remotecontrol/Transmitter.hxx +++ b/sd/source/ui/remotecontrol/Transmitter.hxx @@ -24,7 +24,7 @@ class Transmitter : public salhelper::Thread { public: - enum Priority { LOW = 1, HIGH }; + enum Priority { PRIORITY_LOW = 1, PRIORITY_HIGH }; Transmitter( osl::StreamSocket &aSocket ); ~Transmitter(); void addMessage( const rtl::OString& aMessage, const Priority aPriority ); |