summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-10-15 19:17:58 +0000
committerChris Wilson <chris+github@qwirx.com>2006-10-15 19:17:58 +0000
commit4c9c2b19077e767e648a781131a9440a6648b12f (patch)
tree8fe832b528f37a263fd26f3a3e95ee73ce7dc36c /bin
parent03ac876c25900b9a8ee7640622454383a98730e2 (diff)
Convert command-line arguments from the system locale/character set to
the console character set. (refs #3, combine with [1050])
Diffstat (limited to 'bin')
-rw-r--r--bin/bbackupquery/BackupQueries.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bbackupquery/BackupQueries.h b/bin/bbackupquery/BackupQueries.h
index e84de6ab..41e34d34 100644
--- a/bin/bbackupquery/BackupQueries.h
+++ b/bin/bbackupquery/BackupQueries.h
@@ -36,7 +36,7 @@ private:
BackupQueries(const BackupQueries &);
public:
- void DoCommand(const char *Command);
+ void DoCommand(const char *Command, bool isFromCommandLine);
// Ready to stop?
bool Stop() {return mQuitNow;}
@@ -50,7 +50,7 @@ private:
void CommandChangeDir(const std::vector<std::string> &args, const bool *opts);
void CommandChangeLocalDir(const std::vector<std::string> &args);
void CommandGetObject(const std::vector<std::string> &args, const bool *opts);
- void CommandGet(const std::vector<std::string> &args, const bool *opts);
+ void CommandGet(std::vector<std::string> args, const bool *opts);
void CommandCompare(const std::vector<std::string> &args, const bool *opts);
void CommandRestore(const std::vector<std::string> &args, const bool *opts);
void CommandUndelete(const std::vector<std::string> &args, const bool *opts);