diff options
| author | Paul Reilly | 1994-09-25 23:35:41 +0000 |
|---|---|---|
| committer | Paul Reilly | 1994-09-25 23:35:41 +0000 |
| commit | 6618806e6bd00103db21d592f4327ba7142659b1 (patch) | |
| tree | 48c5092988b55636ffce74fb8b96ac531bf7c085 | |
| parent | 87a559bff74112a031914cdf185cabbf8a019c0c (diff) | |
| download | emacs-6618806e6bd00103db21d592f4327ba7142659b1.tar.gz emacs-6618806e6bd00103db21d592f4327ba7142659b1.zip | |
(lw_set_main_areas): Move call to XmMainSetAreas() to `lwlib-Xm.c'.
| -rw-r--r-- | lwlib/lwlib.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 4ac186e586e..e3c0e6fd2c6 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c | |||
| @@ -1340,12 +1340,7 @@ lw_set_main_areas (parent, menubar, work_area) | |||
| 1340 | Widget work_area; | 1340 | Widget work_area; |
| 1341 | { | 1341 | { |
| 1342 | #if defined (USE_MOTIF) | 1342 | #if defined (USE_MOTIF) |
| 1343 | XmMainWindowSetAreas (parent, | 1343 | xm_set_main_areas (parent, menubar, work_area); |
| 1344 | menubar, /* menubar (maybe 0) */ | ||
| 1345 | 0, /* command area (psheets) */ | ||
| 1346 | 0, /* horizontal scroll */ | ||
| 1347 | 0, /* vertical scroll */ | ||
| 1348 | work_area); /* work area */ | ||
| 1349 | #endif | 1344 | #endif |
| 1350 | } | 1345 | } |
| 1351 | 1346 | ||