From e66c68e2420ed2e2b4ce531dea46dc04b3db297b Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Thu, 12 Aug 2021 21:03:34 +0200 Subject: Fix failing build - src/rotation-lock.cpp: Fix double declaration of create_desktop_menu - tests/CMakeLists.txt: Add uninitDerivedMemberVar and unmatchedSuppression suppressions to cppcheck - tests/unit/rotation-lock-test.cpp: Fix and expand test fixes https://github.com/AyatanaIndicators/ayatana-indicator-display/issues/24 --- src/rotation-lock.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src') diff --git a/src/rotation-lock.cpp b/src/rotation-lock.cpp index e655eaf..b27be71 100644 --- a/src/rotation-lock.cpp +++ b/src/rotation-lock.cpp @@ -171,21 +171,6 @@ private: return G_MENU_MODEL(menu); } - GMenuModel* create_desktop_menu() - { - GMenu* menu; - GMenuItem* menu_item; - - menu = g_menu_new(); - - menu_item = g_menu_item_new(_("Rotation Lock"), "indicator.rotation-lock"); - g_menu_item_set_attribute(menu_item, "x-ayatana-type", "s", "org.ayatana.indicator.switch"); - g_menu_append_item(menu, menu_item); - g_object_unref(menu_item); - - return G_MENU_MODEL(menu); - } - void update_phone_header() { Header h; -- cgit v1.2.3