diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-03-20 05:07:21 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@his.com> | 2019-04-16 19:39:55 +0000 |
commit | e53726577e18f37186d7996dc85dc82de9532d22 (patch) | |
tree | e9950cf4c7068bc82c556ccfe280f959add600b1 /src/Create.c | |
parent | 13ed4421006c3bc7743233a401ce80f849dd889b (diff) |
Allow all of the "argv" strings to be writable, since those arrays may
be updated during initialization.
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Create.c')
-rw-r--r-- | src/Create.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Create.c b/src/Create.c index 47ba2ca..f818c0b 100644 --- a/src/Create.c +++ b/src/Create.c @@ -336,8 +336,8 @@ CompileCallbacks( static Widget xtCreate( - char *name, - char *class, + String name, + String class, WidgetClass widget_class, Widget parent, Screen* default_screen, /* undefined when creating a nonwidget */ |