Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
75231bad
Commit
75231bad
authored
Jun 05, 1994
by
Richard M. Stallman
Browse files
(x_wm_set_icon_position, x_wm_set_icon_pixmap):
[USE_X_TOOLKIT]: Use top-level widget's window.
parent
908fee49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
src/xterm.c
src/xterm.c
+8
-0
No files found.
src/xterm.c
View file @
75231bad
...
...
@@ -5990,7 +5990,11 @@ x_wm_set_icon_pixmap (f, icon_pixmap)
struct frame *f;
Pixmap icon_pixmap;
{
#ifdef USE_X_TOOLKIT
Window window = XtWindow (f->display.x->widget);
#else
Window window = FRAME_X_WINDOW (f);
#endif
if (icon_pixmap)
{
...
...
@@ -6007,7 +6011,11 @@ x_wm_set_icon_position (f, icon_x, icon_y)
struct frame *f;
int icon_x, icon_y;
{
#ifdef USE_X_TOOLKIT
Window window = XtWindow (f->display.x->widget);
#else
Window window = FRAME_X_WINDOW (f);
#endif
f->display.x->wm_hints.flags |= IconPositionHint;
f->display.x->wm_hints.icon_x = icon_x;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment