summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2022-11-17 20:46:00 +0100
committerDave Davenport <qball@blame.services>2022-11-17 20:46:00 +0100
commitd4a2a43c73dca96c6bdaadaf740558f4c6e5ae1f (patch)
tree9a693f948e01087a58d4282a1b7a6255521cf327
parent9dc80f8f7317ed1df6775bb63815d686a88fb2a4 (diff)
Tweak header a bit
-rw-r--r--source/history.c2
-rw-r--r--source/modes/dmenu.c2
-rw-r--r--source/modes/drun.c2
-rw-r--r--source/modes/filebrowser.c2
-rw-r--r--source/modes/help-keys.c2
-rw-r--r--source/modes/run.c2
-rw-r--r--source/modes/ssh.c2
-rw-r--r--source/modes/window.c2
-rw-r--r--source/widgets/container.c2
-rw-r--r--source/widgets/icon.c2
-rw-r--r--source/widgets/listview.c2
-rw-r--r--source/widgets/textbox.c2
-rw-r--r--source/widgets/widget.c2
-rw-r--r--source/xcb.c2
-rw-r--r--test/helper-config-cmdline-parser.c2
-rw-r--r--test/helper-expand.c2
-rw-r--r--test/helper-test.c2
-rw-r--r--test/textbox-test.c2
18 files changed, 19 insertions, 17 deletions
diff --git a/source/history.c b/source/history.c
index 2b8d4f68..cc992dae 100644
--- a/source/history.c
+++ b/source/history.c
@@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
-#include <config.h>
+#include "config.h"
#include "history.h"
#include "rofi.h"
diff --git a/source/modes/dmenu.c b/source/modes/dmenu.c
index 59ea21b5..f5b667a3 100644
--- a/source/modes/dmenu.c
+++ b/source/modes/dmenu.c
@@ -27,7 +27,7 @@
/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.DMenu"
-#include <config.h>
+#include "config.h"
#include "modes/dmenu.h"
#include "helper.h"
diff --git a/source/modes/drun.c b/source/modes/drun.c
index c0bab187..fc4d990b 100644
--- a/source/modes/drun.c
+++ b/source/modes/drun.c
@@ -28,7 +28,7 @@
/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.DRun"
-#include <config.h>
+#include "config.h"
#ifdef ENABLE_DRUN
#include <limits.h>
#include <stdio.h>
diff --git a/source/modes/filebrowser.c b/source/modes/filebrowser.c
index f223ee2b..df3c8c12 100644
--- a/source/modes/filebrowser.c
+++ b/source/modes/filebrowser.c
@@ -23,7 +23,7 @@
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <config.h>
+#include "config.h"
#include <errno.h>
#include <gio/gio.h>
#include <gmodule.h>
diff --git a/source/modes/help-keys.c b/source/modes/help-keys.c
index 3659209d..26b9b617 100644
--- a/source/modes/help-keys.c
+++ b/source/modes/help-keys.c
@@ -25,7 +25,7 @@
*
*/
-#include <config.h>
+#include "config.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/source/modes/run.c b/source/modes/run.c
index 1393471f..198673e1 100644
--- a/source/modes/run.c
+++ b/source/modes/run.c
@@ -33,7 +33,7 @@
/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.Run"
-#include <config.h>
+#include "config.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/source/modes/ssh.c b/source/modes/ssh.c
index 261e5c3c..5a1867ef 100644
--- a/source/modes/ssh.c
+++ b/source/modes/ssh.c
@@ -35,7 +35,7 @@
*/
#define G_LOG_DOMAIN "Modes.Ssh"
-#include <config.h>
+#include "config.h"
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/source/modes/window.c b/source/modes/window.c
index 39070b74..1ff3a98d 100644
--- a/source/modes/window.c
+++ b/source/modes/window.c
@@ -28,7 +28,7 @@
/** The log domain of this dialog. */
#define G_LOG_DOMAIN "Modes.Window"
-#include <config.h>
+#include "config.h"
#ifdef WINDOW_MODE
diff --git a/source/widgets/container.c b/source/widgets/container.c
index 604b3431..a97ab740 100644
--- a/source/widgets/container.c
+++ b/source/widgets/container.c
@@ -27,7 +27,7 @@
/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Container"
-#include <config.h>
+#include "config.h"
#include "widgets/container.h"
#include "theme.h"
diff --git a/source/widgets/icon.c b/source/widgets/icon.c
index ff14f36d..0900fff4 100644
--- a/source/widgets/icon.c
+++ b/source/widgets/icon.c
@@ -27,7 +27,7 @@
/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Icon"
-#include <config.h>
+#include "config.h"
#include "widgets/icon.h"
#include "theme.h"
diff --git a/source/widgets/listview.c b/source/widgets/listview.c
index 52146702..145b61fc 100644
--- a/source/widgets/listview.c
+++ b/source/widgets/listview.c
@@ -25,7 +25,7 @@
*
*/
-#include <config.h>
+#include "config.h"
#include <glib.h>
#include <widgets/box.h>
#include <widgets/icon.h>
diff --git a/source/widgets/textbox.c b/source/widgets/textbox.c
index 2727148e..e8f178ce 100644
--- a/source/widgets/textbox.c
+++ b/source/widgets/textbox.c
@@ -25,7 +25,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
-#include <config.h>
+#include "config.h"
#include "widgets/textbox.h"
#include "helper-theme.h"
diff --git a/source/widgets/widget.c b/source/widgets/widget.c
index a1633f13..bc2be61e 100644
--- a/source/widgets/widget.c
+++ b/source/widgets/widget.c
@@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
-#include <config.h>
+#include "config.h"
#include "widgets/widget.h"
#include "theme.h"
diff --git a/source/xcb.c b/source/xcb.c
index db9e344a..6c8515cb 100644
--- a/source/xcb.c
+++ b/source/xcb.c
@@ -1187,6 +1187,7 @@ static gboolean x11_button_to_nk_bindings_scroll(guint32 x11_button,
static void rofi_key_press_event_handler(xcb_key_press_event_t *xkpe,
RofiViewState *state) {
gchar *text;
+ g_log("IMDKit", G_LOG_LEVEL_DEBUG, "press handler");
xcb->last_timestamp = xkpe->time;
if (config.xserver_i300_workaround) {
@@ -1371,6 +1372,7 @@ static void main_loop_x11_event_handler_view(xcb_generic_event_t *event) {
xcb_key_press_event_t *xkpe = (xcb_key_press_event_t *)event;
#ifdef XCB_IMDKIT
if (xcb->ic) {
+ g_log("IMDKit", G_LOG_LEVEL_DEBUG, "input xim");
xcb_xim_forward_event(xcb->im, xcb->ic, xkpe);
} else
#endif
diff --git a/test/helper-config-cmdline-parser.c b/test/helper-config-cmdline-parser.c
index cc505451..7c3048d4 100644
--- a/test/helper-config-cmdline-parser.c
+++ b/test/helper-config-cmdline-parser.c
@@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
-#include <config.h>
+#include "config.h"
#include "display.h"
#include "rofi-icon-fetcher.h"
diff --git a/test/helper-expand.c b/test/helper-expand.c
index 234ecf02..e80d1a24 100644
--- a/test/helper-expand.c
+++ b/test/helper-expand.c
@@ -24,7 +24,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
-#include <config.h>
+#include "config.h"
#include "display.h"
#include "rofi-icon-fetcher.h"
#include "rofi.h"
diff --git a/test/helper-test.c b/test/helper-test.c
index fc123586..1aca07e7 100644
--- a/test/helper-test.c
+++ b/test/helper-test.c
@@ -25,7 +25,7 @@
*
*/
-#include <config.h>
+#include "config.h"
#include "display.h"
#include "rofi-icon-fetcher.h"
diff --git a/test/textbox-test.c b/test/textbox-test.c
index e99f94e7..0ddfc50f 100644
--- a/test/textbox-test.c
+++ b/test/textbox-test.c
@@ -25,7 +25,7 @@
*
*/
-#include <config.h>
+#include "config.h"
#include <stdlib.h>
#include <unistd.h>