Ticket #2778: mythphone-diff.patch
File mythphone-diff.patch, 788 bytes (added by , 19 years ago) |
---|
-
mythphone/PhoneSettings.cpp
95 95 96 96 static HostSpinBox *TimeToAnswer() 97 97 { 98 HostSpinBox *gc = new HostSpinBox("TimeToAnswer", 1, 30, 1);98 HostSpinBox *gc = new HostSpinBox("TimeToAnswer", 0, 30, 1); 99 99 gc->setLabel(QObject::tr("Time to Answer")); 100 100 gc->setValue(10); 101 101 gc->setHelpText(QObject::tr("The time in seconds a call rings before being " 102 "automatically answered and diverted to a VXML script.")); 102 "automatically answered and diverted to a VXML script." 103 " Set to 0 to disable this feature.")); 103 104 return gc; 104 105 }; 105 106