fcitx5/FTBFS-fcitx5-5.0.23-fmt.patch
Marguerite Su 0a77381f61 Accepting request 1088339 from home:MargueriteSu:branches:M17N
- Update to 5.0.23
  * fix a regression in certain Super(Win key) related
hotkey handling
- Changes in 5.0.22
  * implement application name detection on wayland for text-input
client when using KDE / wlroots.
  * fix xkb rule parsing
  * fix SNI tray menu radio icon
  * avoid forwarding key in certain cases.
  * support xkb rule defined in ~/.config/xkb ~/.xkb
  * fcitx5-configtool now use "command" instead of "which"
  * Improve commit preedit behavior when focus out
- Add FTBFS-fcitx5-5.0.23-fmt.patch

OBS-URL: https://build.opensuse.org/request/show/1088339
OBS-URL: https://build.opensuse.org/package/show/M17N/fcitx5?expand=0&rev=47
2023-05-22 11:21:06 +00:00

14 lines
669 B
Diff

Index: fcitx5-5.0.23/src/modules/dbus/dbusmodule.cpp
===================================================================
--- fcitx5-5.0.23.orig/src/modules/dbus/dbusmodule.cpp
+++ fcitx5-5.0.23/src/modules/dbus/dbusmodule.cpp
@@ -571,7 +571,7 @@ public:
}
ss << "] program:" << ic->program()
<< " frontend:" << ic->frontend()
- << " cap:" << fmt::format("{:x}", ic->capabilityFlags())
+ << " cap:" << fmt::format("{:x}", static_cast<uint64_t>(ic->capabilityFlags()))
<< " focus:" << ic->hasFocus() << std::endl;
return true;
});