diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-02 18:32:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-02 18:33:37 +0200 |
commit | 54e87df11faf697d3b2666198a3d20b3ee091419 (patch) | |
tree | 8cfe316f012a4969ca6980fa6ac2fdb3a9424118 /include/svl | |
parent | 3aac11a1233f679ea813fee8b8de134553d7db60 (diff) |
Change INetProtocol enumerators to CamelCase
...to avoid clashes with macros and poor warnings about hiding global FILE
Change-Id: I444e8b958f029201b228937e088efabc4b6d3050
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/inethist.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svl/inethist.hxx b/include/svl/inethist.hxx index 6b4f9755011b..0cd3801c5985 100644 --- a/include/svl/inethist.hxx +++ b/include/svl/inethist.hxx @@ -63,10 +63,10 @@ public: */ bool QueryProtocol (INetProtocol eProto) const { - return ((eProto == INetProtocol::FILE ) || - (eProto == INetProtocol::FTP ) || - (eProto == INetProtocol::HTTP ) || - (eProto == INetProtocol::HTTPS) ); + return ((eProto == INetProtocol::File ) || + (eProto == INetProtocol::Ftp ) || + (eProto == INetProtocol::Http ) || + (eProto == INetProtocol::Https) ); } /** QueryUrl. |