diff options
author | Luboš Doležel <lubos@dolezel.info> | 2017-11-26 12:02:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-26 12:02:29 +0100 |
commit | ab0b77821543b5b35d65792fbf44cd7acb4f8475 (patch) | |
tree | 58c65370768cc2cf0fd058b55f8dbba31799e19f /src | |
parent | ff62a107f10fa586e25a46aef4fe06dea18b6c10 (diff) | |
parent | 1b25dde15ce5c3ff21c8bf56adb0028786036632 (diff) | |
download | twinkle-ab0b77821543b5b35d65792fbf44cd7acb4f8475.tar twinkle-ab0b77821543b5b35d65792fbf44cd7acb4f8475.tar.gz twinkle-ab0b77821543b5b35d65792fbf44cd7acb4f8475.tar.lz twinkle-ab0b77821543b5b35d65792fbf44cd7acb4f8475.tar.xz twinkle-ab0b77821543b5b35d65792fbf44cd7acb4f8475.zip |
Merge pull request #102 from traud/UDUB
User-Determined User Busy (UDUB)
Diffstat (limited to 'src')
-rw-r--r-- | src/line.cpp | 2 | ||||
-rw-r--r-- | src/userintf.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/line.cpp b/src/line.cpp index 1c1de17..a5f1b31 100644 --- a/src/line.cpp +++ b/src/line.cpp @@ -700,7 +700,7 @@ void t_line::reject(void) { stop_timer(LTMR_NO_ANSWER); try { - active_dialog->reject(R_603_DECLINE); + active_dialog->reject(R_486_BUSY_HERE); } catch (t_exception x) { // TODO: there is no call to reject diff --git a/src/userintf.cpp b/src/userintf.cpp index 1fec547..f75a140 100644 --- a/src/userintf.cpp +++ b/src/userintf.cpp @@ -1565,7 +1565,7 @@ void t_userintf::do_help(const list<t_command_arg> &al) { cout << "Usage:\n"; cout << "\treject\n"; cout << "Description:\n"; - cout << "\tReject an incoming call. A 603 Decline response\n"; + cout << "\tReject an incoming call. A 486 Busy Here response\n"; cout << "\twill be sent.\n"; cout << endl; |