summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-16 12:50:59 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-16 12:50:59 +0000
commit17d5cbde7ba4cbafc18122d49b4ed02530c9de97 (patch)
treed180a747d6fead88655ba37b132c7bd8eb3e1b48
parent696b137d5855cdcd0e6b95e16ce2dad00510a41d (diff)
Remove code which prevented the use from specifying the window size in
nodecoration mode. obfuscate the mail adresses
-rw-r--r--hw/xwin/ChangeLog30
-rw-r--r--hw/xwin/wincreatewnd.c18
2 files changed, 18 insertions, 30 deletions
diff --git a/hw/xwin/ChangeLog b/hw/xwin/ChangeLog
index 2f5584cc0..ad218a6d2 100644
--- a/hw/xwin/ChangeLog
+++ b/hw/xwin/ChangeLog
@@ -1,3 +1,9 @@
+2004-09-16 Alexander Gottwald <ago at freedesktop dot org>
+
+ * wincreatewnd.c (winCreateBoundingWindowWindowed):
+ Remove code which prevented the use from specifying the window
+ size in nodecoration mode.
+
2004-08-02 Kensuke Matsuzaki
* winclipboardthread.c winclipboardwndproc.c:
@@ -7,18 +13,18 @@
fUseUnicode, because it don't mean wheather Windows support
Unicode or not.
-2004-07-31 Alexander Gottwald <ago@freedesktop.org>
+2004-07-31 Alexander Gottwald <ago at freedesktop dot org>
* win.h:
adjust prototype for winInitCmapPrivates to match Egberts change.
-2004-07-30 Egbert Eich <eich@freedesktop.org>
+2004-07-30 Egbert Eich <eich at freedesktop dot org>
* winallpriv.c: (winInitCmapPrivates):
test if colormap with index really exists in the list of
installed maps before using it.
-2004-07-09 Alexander Gottwald <ago@freedesktop.org>
+2004-07-09 Alexander Gottwald <ago at freedesktop dot org>
* winconfig.c: Add entry for irish layout (ie)
* InitOutput.c, winerror.c, winglobals.c: rename g_fUseMsg to
@@ -27,38 +33,38 @@
-silent-dup-error to allow silent termination if another instance of
XWin was found running
-2004-06-27 Alexander Gottwald <ago@freedesktop.org>
+2004-06-27 Alexander Gottwald <ago at freedesktop dot org>
* winconfig.c: Add entry for us layout. This changes not much but
removes a strange error message about the unknown us layout.
-2004-06-24 Alexander Gottwald <ago@freedesktop.org>
+2004-06-24 Alexander Gottwald <ago at freedesktop dot org>
* InitOutput.c: Check for textmode mounted /tmp and print a warning
-2004-06-15 Harold Hunt <huntharo@msu.edu>
+2004-06-15 Harold Hunt <huntharo at msu dot edu>
* windialogs.c: Fix path to locally installed changelog for the About
dialog box.
-2004-05-27 Alexander Gottwald <ago@freedesktop.org>
+2004-05-27 Alexander Gottwald <ago at freedesktop dot org>
* winpriv.c: Create win32 window if not already created
* winmultiwindowwindow.c: Export winCreateWindowWindow
-2004-05-27 Alexander Gottwald <ago@freedesktop.org>
+2004-05-27 Alexander Gottwald <ago at freedesktop dot org>
* win.h: Allow CYGDEBUG to defined in the Makefile
* winwindow.h: Allow CYGWINDOWING_DEBUG to defined in the Makefile
-2004-05-19 Alexander Gottwald <ago@freedesktop.org>
+2004-05-19 Alexander Gottwald <ago at freedesktop dot org>
* winmultiwindowicons.c (winInitGlobalIcons): Load the small default
icon too
* winprefs.h, winprefs.c (winOverrideDefaultIcon): Takes the iconsize
as parameter
-2004-05-19 Alexander Gottwald <ago@freedesktop.org>
+2004-05-19 Alexander Gottwald <ago at freedesktop dot org>
* win.h, winmultiwindowicons.c (winXIconToHICON): Takes iconsize
as parameter
@@ -83,14 +89,14 @@
winwin32rootless.c (winMWExtWMDestroyFrame): Use winDestroyIcon
to free the icon without destroying the global icon.
-2004-05-17 Alexander Gottwald <ago@freedesktop.org>
+2004-05-17 Alexander Gottwald <ago at freedesktop dot org>
* windialogs.c (winExitDlgProc, winAboutDlgProc),
winmultiwindowwndproc.c (winTopLevelWindowProc),
winwndproc.c (winWindowProc): Check if g_fSoftwareCursor is set
before calling ShowCursor.
-2004-05-09 Dan Wilks <Dan_Wilks@intuit.com>
+2004-05-09 Dan Wilks <Dan_Wilks at intuit dot com>
* winclipboard.h: Add extern prototypes for winDebug, winErrorFVerb
copied from winmsg.h.
diff --git a/hw/xwin/wincreatewnd.c b/hw/xwin/wincreatewnd.c
index 7a1c6f352..606da2e02 100644
--- a/hw/xwin/wincreatewnd.c
+++ b/hw/xwin/wincreatewnd.c
@@ -240,24 +240,6 @@ winCreateBoundingWindowWindowed (ScreenPtr pScreen)
+ GetSystemMetrics (SM_CYCAPTION);
}
}
- else
- {
- /*
- * User gave a width and height but also said no decoration.
- * In this case we have to ignore the requested width and height
- * and instead use the largest possible window that we can.
- */
- if (pScreenInfo->fMultipleMonitors)
- {
- iWidth = GetSystemMetrics (SM_CXVIRTUALSCREEN);
- iHeight = GetSystemMetrics (SM_CYVIRTUALSCREEN);
- }
- else
- {
- iWidth = GetSystemMetrics (SM_CXSCREEN);
- iHeight = GetSystemMetrics (SM_CYSCREEN);
- }
- }
}
else
{