diff options
Diffstat (limited to 'abs/core/mythinstall/infrared.cpp.patch')
-rw-r--r-- | abs/core/mythinstall/infrared.cpp.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/abs/core/mythinstall/infrared.cpp.patch b/abs/core/mythinstall/infrared.cpp.patch new file mode 100644 index 0000000..7c3b2cf --- /dev/null +++ b/abs/core/mythinstall/infrared.cpp.patch @@ -0,0 +1,35 @@ +--- infrared.cpp.orig 2013-12-06 18:56:39.300263083 +0000 ++++ infrared.cpp 2013-12-06 21:52:25.071935902 +0000 +@@ -339,7 +339,7 @@ + gc->addSelection("user"); + gc->addSelection("other"); + +- gc->setHelpText(QObject::tr("Remote classification. Favorites are remotes fully supported by LinHES.")); ++ gc->setHelpText(QObject::tr("Remote classification. Favorites are remotes fully supported by LinHES.")); + + return gc; + }; +@@ -391,6 +391,7 @@ + IRFrame::IRFrame(): + VerticalConfigurationGroup(false,false,false,false) + { ++ setLabel(QObject::tr("Remotes Settings")); + LIRC_ReceiverSettings *receiversettings = new LIRC_ReceiverSettings(); + //addChild(new HostRemoteTypeIR()); + addChild(new Remote_bucket()); +@@ -685,6 +686,7 @@ + IR_TransmitFrame::IR_TransmitFrame(): + VerticalConfigurationGroup(false,false,false,false) + { ++ setLabel(QObject::tr("Blaster Settings")); + LIRC_BlasterSettings *blastersettings = new LIRC_BlasterSettings(); + addChild(blastersettings); + } +@@ -724,6 +726,7 @@ + LCDFrame::LCDFrame(): + VerticalConfigurationGroup(false,false,false,false) + { ++ setLabel(QObject::tr("LCD Settings")); + addChild(HostLCDType()); + } + |