summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormethodus <methodus@web.de>2012-12-28 05:38:01 +0100
committermethodus <methodus@web.de>2012-12-28 05:38:01 +0100
commita758404f2a9c7f1b05b437cf776d691156ce1d09 (patch)
tree7178f507f83bda3cbccac20c84af0ca26a2b9a06 /include
parent2da4e317fd28e8aa4dcc8f1a1fc01ed72f538150 (diff)
downloadvdr-plugin-upnp-a758404f2a9c7f1b05b437cf776d691156ce1d09.tar.gz
vdr-plugin-upnp-a758404f2a9c7f1b05b437cf776d691156ce1d09.tar.bz2
Fixed crash when getting thumbnail directory.
Diffstat (limited to 'include')
-rw-r--r--include/webserver.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/webserver.h b/include/webserver.h
index 2509870..8b93a02 100644
--- a/include/webserver.h
+++ b/include/webserver.h
@@ -34,13 +34,13 @@ namespace upnp {
bool Start();
void Stop();
- const std::string GetBaseUrl() const;
- const std::string GetServiceUrl() const;
- const std::string GetControlUrl() const;
- const std::string GetStaticContentUrl() const;
- const std::string GetPresentationUrl() const;
+ std::string GetBaseUrl() const;
+ std::string GetServiceUrl() const;
+ std::string GetControlUrl() const;
+ std::string GetStaticContentUrl() const;
+ std::string GetPresentationUrl() const;
- const std::string GetThumbnailDir() const;
+ std::string GetThumbnailDir() const;
std::string GetListenerAddress() const { return mListenerAddress; }
uint16_t GetListenerPort() const { return mListenerPort; }