summaryrefslogtreecommitdiff
path: root/examples/Web_Crawler/Options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Web_Crawler/Options.cpp')
-rw-r--r--examples/Web_Crawler/Options.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/Web_Crawler/Options.cpp b/examples/Web_Crawler/Options.cpp
index 14d862dd5c4..89b8e90e5bc 100644
--- a/examples/Web_Crawler/Options.cpp
+++ b/examples/Web_Crawler/Options.cpp
@@ -9,7 +9,7 @@ ACE_RCSID(Web_Crawler, Options, "$Id$")
int
Options::parse_args (int argc, char *argv[])
{
- ACE_Get_Opt getopt (argc, argv, ASYS_TEXT ("df:h:i:l:rt:u:vo:p:"));
+ ACE_Get_Opt getopt (argc, argv, ACE_TEXT ("df:h:i:l:rt:u:vo:p:"));
ACE_LOG_MSG->open (argv[0]);
@@ -121,24 +121,24 @@ Options::verbose (void) const
return this->verbose_;
}
-LPCTSTR
+const ACE_TCHAR *
Options::order (void) const
{
return this->order_;
}
-LPCTSTR
+const ACE_TCHAR *
Options::hostname (void) const
{
return this->hostname_;
}
-LPCTSTR
+const ACE_TCHAR *
Options::path_name (void) const
{
return this->uri_;
}
-LPCTSTR
+const ACE_TCHAR *
Options::url_filter (void) const
{
return this->url_filter_;