I have made the following changes intended for : nemo:devel:mw / contextkit-plugins-nemo
Please review and accept or decline. BOSS has already run some checks on this request. See the "Messages from BOSS" section below. https://build.merproject.org//request/show/130 Thank You, John Brooks [This message was auto-generated] --- Request # 130: Messages from BOSS: State: review at 2013-03-31T01:12:27 by cibot Reviews: accepted by cibot : Prechecks succeeded. new for nemo:devel:mw : Please replace this text with a review and approve/reject the review (not the SR). BOSS will take care of the rest Changes: submit: home:jbrooks:branches:nemo:devel:mw / contextkit-plugins-nemo -> nemo:devel:mw / contextkit-plugins-nemo changes files: -------------- --- contextkit-plugins-nemo.changes +++ contextkit-plugins-nemo.changes @@ -0,0 +1,3 @@ +* Sat Mar 30 2013 John Brooks <[email protected]> - 0.7.40 +- keyboard-generic: Fix uninitialized values causing incorrect results + old: ---- contextkit-plugins-nemo-0.7.39.tar.bz2 new: ---- contextkit-plugins-nemo-0.7.40.tar.bz2 spec files: ----------- --- contextkit-plugins-nemo.spec +++ contextkit-plugins-nemo.spec @@ -1,6 +1,6 @@ Name: contextkit-plugins-nemo Summary: ContextKit providers for Nemo Mobile -Version: 0.7.39 +Version: 0.7.40 Release: 1 Group: Applications/System License: LGPLv2 other changes: -------------- ++++++ contextkit-plugins-nemo-0.7.39.tar.bz2 -> contextkit-plugins-nemo-0.7.40.tar.bz2 --- meego/cellular/CMakeLists.txt +++ meego/cellular/CMakeLists.txt @@ -30,7 +30,7 @@ PROPERTIES INCLUDE common.h ) -qt4_add_dbus_interface_no_ns(SRC ${MGR_IF} manager Manager) +qt4_add_dbus_interface_no_ns(SRC ${MGR_IF} manager OFonoConnectionManager) qt4_add_dbus_interface_no_ns(SRC ${NET_IF} ofono NetworkProperties) qt4_add_dbus_interface_no_ns(SRC ${SIM_IF} sim SimProperties) --- meego/cellular/cellularprovider.cpp +++ meego/cellular/cellularprovider.cpp @@ -59,7 +59,7 @@ qDebug() << "CellularProvider" << "First subscriber appeared, connecting to ofono"; - managerProxy = new Manager("org.ofono", "/", QDBusConnection::systemBus()); + managerProxy = new OFonoConnectionManager("org.ofono", "/", QDBusConnection::systemBus()); reply = managerProxy->GetModems(); QDBusPendingCallWatcher watcher(reply); --- meego/cellular/cellularprovider.h +++ meego/cellular/cellularprovider.h @@ -69,7 +69,7 @@ private: - Manager *managerProxy; + OFonoConnectionManager *managerProxy; QString activeModem; QMap<QString,QVariant> properties; QSet<QString> subscribedProperties; --- meego/keyboard-generic/plugin.cpp +++ meego/keyboard-generic/plugin.cpp @@ -94,6 +94,7 @@ } KeyboardGeneric::KeyboardGeneric() + : is_setup(false), is_kbd_available(false) { props[ckit::is_present] = [&]() { emitChanged(ckit::is_present, is_kbd_available);
