File tree 5 files changed +25
-0
lines changed
5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ st_private_headers = [
91
91
' croco/libcroco-config.h' ,
92
92
' croco/libcroco.h' ,
93
93
' st-background-effect.h' ,
94
+ ' st-debug.h' ,
94
95
' st-private.h' ,
95
96
' st-table-private.h' ,
96
97
' st-theme-private.h' ,
@@ -107,6 +108,7 @@ st_gir_sources = [
107
108
' st-box-layout-child.c' ,
108
109
' st-button.c' ,
109
110
' st-clipboard.c' ,
111
+ ' st-debug.c' ,
110
112
' st-drawing-area.c' ,
111
113
' st-entry.c' ,
112
114
' st-focus-manager.c' ,
@@ -174,6 +176,7 @@ st_h = configure_file(
174
176
)
175
177
176
178
libst_deps = [
179
+ cjs,
177
180
clutter,
178
181
cogl,
179
182
cogl_path,
Original file line number Diff line number Diff line change
1
+ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
+
3
+ #include <cjs/gjs.h>
4
+
5
+
6
+ /**
7
+ * st_debug_dump_js_stack:
8
+ *
9
+ * Prints out the gjs stack
10
+ */
11
+ void
12
+ st_dump_js_stack (void )
13
+ {
14
+ gjs_dumpstack ();
15
+ }
Original file line number Diff line number Diff line change
1
+ /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
+
3
+ void st_dump_js_stack (void );
Original file line number Diff line number Diff line change 40
40
41
41
#include <clutter/clutter.h>
42
42
43
+ #include "st-debug.h"
43
44
#include "st-label.h"
44
45
#include "st-private.h"
45
46
#include "st-widget.h"
@@ -330,6 +331,7 @@ st_label_get_text (StLabel *label)
330
331
if (ctext == NULL ) {
331
332
g_printerr ("Cinnamon WARNING: Possible orphan label being accessed via st_label_get_text(). Check your timers and handlers!\n"
332
333
"Address: %p\n" , (void * ) label );
334
+ st_dump_js_stack ();
333
335
priv -> orphan = TRUE;
334
336
return NULL ;
335
337
}
Original file line number Diff line number Diff line change 35
35
#include "st-widget.h"
36
36
37
37
#include "st-background-effect.h"
38
+ #include "st-debug.h"
38
39
#include "st-label.h"
39
40
#include "st-private.h"
40
41
#include "st-texture-cache.h"
@@ -583,6 +584,7 @@ st_widget_get_theme_node (StWidget *widget)
583
584
{
584
585
g_critical ("st_widget_get_theme_node called on the widget %s which is not in the stage." ,
585
586
st_describe_actor (CLUTTER_ACTOR (widget )));
587
+ st_dump_js_stack ();
586
588
return g_object_new (ST_TYPE_THEME_NODE , NULL );
587
589
}
588
590
You can’t perform that action at this time.
0 commit comments