summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-10-23 07:19:37 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-10-23 07:19:37 +0300
commite9642760d8b25f6249524288891475b5650d2b68 (patch)
treef18f30666ed04112d843e06f65ddc095c23c95da /src/app.c
parentfb627f1ae471ae2fe966cbd98f2e58f1c8d2e742 (diff)
Cleanup
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index 36930697..3f5da587 100644
--- a/src/app.c
+++ b/src/app.c
@@ -1030,7 +1030,7 @@ const iString *debugInfo_App(void) {
1030 iDocumentWidget *doc = k.object; 1030 iDocumentWidget *doc = k.object;
1031 appendFormat_String(msg, "### Tab %d.%zu: %s\n", 1031 appendFormat_String(msg, "### Tab %d.%zu: %s\n",
1032 constAs_Widget(doc)->root == get_Window()->roots[0] ? 1 : 2, 1032 constAs_Widget(doc)->root == get_Window()->roots[0] ? 1 : 2,
1033 childIndex_Widget(constAs_Widget(doc)->parent, k.object) + 1, 1033 indexOfChild_Widget(constAs_Widget(doc)->parent, k.object) + 1,
1034 cstr_String(bookmarkTitle_DocumentWidget(doc))); 1034 cstr_String(bookmarkTitle_DocumentWidget(doc)));
1035 append_String(msg, collect_String(debugInfo_History(history_DocumentWidget(doc)))); 1035 append_String(msg, collect_String(debugInfo_History(history_DocumentWidget(doc))));
1036 } 1036 }