wnd-commit Mailing List for wnd (Page 11)
Status: Alpha
Brought to you by:
jurner
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(125) |
Jun
|
Jul
(138) |
Aug
(13) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: jürgen u. <cer...@us...> - 2005-05-15 09:22:39
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30224 Modified Files: combobox.py Log Message: new message Index: combobox.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/combobox.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** combobox.py 29 Apr 2005 15:21:16 -0000 1.1.1.1 --- combobox.py 15 May 2005 09:22:22 -0000 1.2 *************** *** 98,102 **** self.onMSG(hwnd, "killfocus", 0, 0) return 0 ! #-------------------------------------------------------------------- --- 98,104 ---- self.onMSG(hwnd, "killfocus", 0, 0) return 0 ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #-------------------------------------------------------------------- *************** *** 365,370 **** #elif 'dropdownlist' in styles: flag=True #if not flag: ! styles += 'subclass', 'nointegralheight' ! control.BaseControl.__init__(self, parent, "combobox", '', x, y, w, h, *styles) #self._base_pChildEnumProc= ENUMWINDOWSPROC(self._base_ChildEnumProc) --- 367,372 ---- #elif 'dropdownlist' in styles: flag=True #if not flag: ! styles += 'subclass', 'nointegralheight', ! control.BaseControl.__init__(self, parent, "combobox", '', x, y, w, h, *styles) #self._base_pChildEnumProc= ENUMWINDOWSPROC(self._base_ChildEnumProc) |
From: jürgen u. <cer...@us...> - 2005-05-15 09:22:09
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30149 Modified Files: checkbox.py Log Message: new message Index: checkbox.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/checkbox.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** checkbox.py 29 Apr 2005 15:21:07 -0000 1.1.1.1 --- checkbox.py 15 May 2005 09:21:48 -0000 1.2 *************** *** 58,62 **** elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! #------------------------------------------------------------------------- --- 58,64 ---- elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #------------------------------------------------------------------------- |
From: jürgen u. <cer...@us...> - 2005-05-15 09:21:32
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30085 Modified Files: button.py Log Message: new message Index: button.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/button.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** button.py 29 Apr 2005 15:21:05 -0000 1.1.1.1 --- button.py 15 May 2005 09:21:23 -0000 1.2 *************** *** 51,55 **** elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! #------------------------------------------------------------------------- --- 51,57 ---- elif msg==self.Msg.WM_SETFOCUS: self.onMSG(hwnd, "setfocus", wp, lp) elif msg==self.Msg.WM_KILLFOCUS: self.onMSG(hwnd, "killfocus", wp, lp) ! elif msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 #------------------------------------------------------------------------- |
From: jürgen u. <cer...@us...> - 2005-05-15 09:21:14
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30013 Modified Files: blank.py Log Message: new message Index: blank.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/blank.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** blank.py 29 Apr 2005 15:21:28 -0000 1.1.1.1 --- blank.py 15 May 2005 09:20:59 -0000 1.2 *************** *** 39,44 **** def onMESSAGE(self, hwnd, msg, wp, lp): ! pass ! def onMSG(self, hwnd, msg, wp, lp): --- 39,47 ---- def onMESSAGE(self, hwnd, msg, wp, lp): ! if msg==self.Msg.WM_DESTROY: ! self.onMSG(hwnd, "destroy", 0, 0) ! return 0 ! ! def onMSG(self, hwnd, msg, wp, lp): |
From: jürgen u. <cer...@us...> - 2005-05-15 09:20:45
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29979 Modified Files: animation.py Log Message: new message Index: animation.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/animation.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** animation.py 29 Apr 2005 15:20:58 -0000 1.1.1.1 --- animation.py 15 May 2005 09:20:36 -0000 1.2 *************** *** 15,21 **** --- 15,23 ---- def onMESSAGE(self, hwnd, msg, wp, lp): # Not shure if this is necessary + if msg==self.Msg.WM_DESTROY: try: self.CloseAnim() except: pass + self.onMSG(hwnd, "destroy", 0, 0) return 0 |
From: jürgen u. <cer...@us...> - 2005-05-15 09:20:45
|
Update of /cvsroot/wnd/wnd/wnd/consts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29805 Modified Files: vk.py Log Message: ?? Index: vk.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/consts/vk.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** vk.py 29 Apr 2005 15:20:50 -0000 1.1.1.1 --- vk.py 15 May 2005 09:19:54 -0000 1.2 *************** *** 76,79 **** --- 76,80 ---- VK_8 = 56 VK_9 = 57 + VK_A = 65 VK_B = 66 *************** *** 102,105 **** --- 103,107 ---- VK_Y = 89 VK_Z = 90 + VK_LWIN = 91 VK_RWIN = 92 |
From: jürgen u. <cer...@us...> - 2005-05-15 09:20:08
|
Update of /cvsroot/wnd/wnd/wnd/api In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29723 Added Files: winpath.py Log Message: new module --- NEW FILE: winpath.py --- """ Some shlwapi.dll path functions Somewhat faster then os.path NOT IMPLEMENTED PathCannonicalize PathCompactPathEx PathCommonPrefix PathFindOnPath PathGetCharType PathIsContentType PathIsFileSpec PathIsHTMLFile ## not supported on win9x PathIsPrefix PathIsRelative PathIsRoot PathIsSameRoot PathIsSystemFolder PathIsUNC PathIsUNCServer PathIsUNCServerShare PathMakePretty PathMakeSystemFolder PathParseIconLocation PathRelativePathTo PathRemoveBackslash PathRemoveBlanks PathSearchAndQualify PathSetDlgItemPath PathUnmakeSystemFolder """ from ctypes import windll, create_string_buffer, string_at shlwapi= windll.shlwapi gdi32= windll.gdi32 #::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: def AddBackslash(path): p= create_string_buffer(path, size=len(path)+1) shlwapi.PathAddBackslashA(p) return p.value def AddExtension(path, ext): p= create_string_buffer(path, size=len(path)+len(ext)) if not shlwapi.PathAddExtensionA(p, ext): raise RuntimeError, "could not add extension" return p.value def Append(path1, path2): p= create_string_buffer(path1, size=len(path1)+len(path2)+1) if not shlwapi.PathAppendA(p, path2): raise RuntimeError, "could not append path" dbg.debug(p.value) def BuiltRoot(n): p= create_string_buffer(4) shlwapi.PathBuildRootA(p, n) return p.value def Combine(path1, path2): p= create_string_buffer(len(path1)+len(path2)+1) if not shlwapi.PathCombineA(p, path1, path2): raise RuntimeError, "could not combine path" return p.value def Compact(hDC, hFont, path, cx): if hFont: hOldFont= gdi32.SelectObject(hDC, hFont) if not hOldFont: raise RuntimeError, "could not select font" p= create_string_buffer(path) result= shlwapi.PathCompactPathA(hDC, p, cx) if hFont: gdi32.SelectObject(hDC, hOldFont) return p.value def Exists(path): return bool(shlwapi.PathFileExistsA(path)) def GetExtension(path): return string_at(shlwapi.PathFindExtensionA(path)) def GetFileName(path): result= string_at(shlwapi.PathFindFileNameA(path)) if result != path: return result def Iter(path): yield path while True: path= shlwapi.PathFindNextComponentA(path) if not path: break path= string_at(path) if not path: break yield path def IterReverted(path): root= GetRoot(path) yield path for i in reversed(range(len(path))): if path[i] in ('\\/'): try: if '\\' in path[:i-1]: yield path[:i] elif '/' in path[:i-1]: yield path else: if root: yield root else: print path[:i] except: yield path[:i] break def GetArgs(path): addr= shlwapi.PathGetArgsA(path) if addr: return string_at(addr) def GetDriveNumber(path): result= shlwapi.PathGetDriveNumberA(path) if result > -1: return result def IsDir(path): return bool(shlwapi.PathIsDirectoryA(path)) def IsURL(path): return bool(shlwapi.PathIsURLA(path)) def MatchSpec(path, spec): return bool(shlwapi.PathMatchSpecA(path, spec)) def QuoteSpaces(path): p= create_string_buffer(path, len(path)+2) shlwapi.PathQuoteSpacesA(p) return p.value def UnquoteSpaces(path): p= create_string_buffer(path) shlwapi.PathUnquoteSpacesA(p) return p.value def RemoveArgs(path): p= create_string_buffer(path) shlwapi.PathRemoveArgsA(p) return p.value def RemoveFileSpec(path): p= create_string_buffer(path) shlwapi.PathRemoveFileSpecA(p) return p.value def RemoveExtension(path): p= create_string_buffer(path) shlwapi.PathRemoveExtensionA(p) return p.value def ReplaceExtension(path, ext): p= create_string_buffer(path, size= len(path)+len(ext)+1) if shlwapi.PathRenameExtensionA(path, ext): return p.value def StripRoot(path): addr= shlwapi.PathSkipRootA(path) if addr: return string_at(addr) def StripPath(path): addr= shlwapi.PathStripPathA(path) if addr: return string_at(addr) def GetRoot(path): p= create_string_buffer(path) if shlwapi.PathStripToRootA(p): return p.value def IsRoot(path): return bool(shlwapi.PathIsRootA(path)) #def SetDlgItemPath(hwndParent, hwndControl, path): # idControl= user32.GetDlgCtrlID(hwndControl) # if not idControl: raise "could not retrieve dlg ID" # if not shlwapi.PathSetDlgItemPathA(hwndParent, idControl7, path): # raise "could not set path" |
From: jürgen u. <cer...@us...> - 2005-05-15 09:18:16
|
Update of /cvsroot/wnd/wnd/wnd/api In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29393 Modified Files: resources.py Log Message: ?? Index: resources.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/api/resources.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** resources.py 29 Apr 2005 15:19:54 -0000 1.1.1.1 --- resources.py 15 May 2005 09:17:35 -0000 1.2 *************** *** 159,160 **** --- 159,162 ---- #if 'cursor' in avail: + + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:40:20
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/tools/doctool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv441 Modified Files: .CVSIGNORE Log Message: nothing new (still struggeling with CVS) Index: .CVSIGNORE =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/tools/doctool/.CVSIGNORE,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** .CVSIGNORE 29 Apr 2005 15:15:22 -0000 1.1.1.1 --- .CVSIGNORE 1 May 2005 15:40:12 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- *.html *.gif + *.log |
From: jürgen u. <cer...@us...> - 2005-05-01 15:37:07
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/controls/control classes/textin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31394 Removed Files: textin.clp Log Message: unneeded file --- textin.clp DELETED --- |
From: jürgen u. <cer...@us...> - 2005-05-01 15:35:41
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/controls/control classes/tab In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30635 Removed Files: Noname2.txt Log Message: unneeded file --- Noname2.txt DELETED --- |
From: jürgen u. <cer...@us...> - 2005-05-01 15:29:21
|
Update of /cvsroot/wnd/wnd/wnd_doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27239 Modified Files: .CVSIGNORE Log Message: nothing new (still struggeling withC CVS) Index: .CVSIGNORE =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/.CVSIGNORE,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** .CVSIGNORE 29 Apr 2005 15:15:05 -0000 1.1.1.1 --- .CVSIGNORE 1 May 2005 15:29:11 -0000 1.2 *************** *** 2,3 **** --- 2,5 ---- *.gif *.chm + *.pyc + *.pyo |
From: jürgen u. <cer...@us...> - 2005-05-01 15:28:55
|
Update of /cvsroot/wnd/wnd/wnd/unittests/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27042 Modified Files: __init__.py Log Message: nothing new (still struggeling withC CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/unittests/controls/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:25:45 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:28:47 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:23:27
|
Update of /cvsroot/wnd/wnd/wnd/tools/doctool/_test_chm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23787 Modified Files: .CVSIGNORE Log Message: nothing changed (still struggeling with CVS) Index: .CVSIGNORE =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/tools/doctool/_test_chm/.CVSIGNORE,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** .CVSIGNORE 29 Apr 2005 15:25:17 -0000 1.1.1.1 --- .CVSIGNORE 1 May 2005 15:23:07 -0000 1.2 *************** *** 1,2 **** --- 1,6 ---- *.pyc *.pyo + *.log + *.hhp + *.hhc + *.hhk |
From: jürgen u. <cer...@us...> - 2005-05-01 15:22:42
|
Update of /cvsroot/wnd/wnd/wnd/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23347 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/tools/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:24:59 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:22:31 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:22:12
|
Update of /cvsroot/wnd/wnd/wnd/res In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23105 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/res/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:24:49 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:22:04 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:21:54
|
Update of /cvsroot/wnd/wnd/wnd/guis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22757 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/guis/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:24:47 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:21:43 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:21:12
|
Update of /cvsroot/wnd/wnd/wnd/dlgs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22470 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/dlgs/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:23:59 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:21:03 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:20:46
|
Update of /cvsroot/wnd/wnd/wnd/custom In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22241 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/custom/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:23:51 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:20:35 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:19:42
|
Update of /cvsroot/wnd/wnd/wnd/controls/base In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21547 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/base/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:23:41 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:19:29 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:19:15
|
Update of /cvsroot/wnd/wnd/wnd/controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21246 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/controls/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:21:00 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:19:04 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:18:48
|
Update of /cvsroot/wnd/wnd/wnd/consts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21112 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/consts/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:20:48 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:18:40 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:14:47
|
Update of /cvsroot/wnd/wnd/wnd/api/com In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19321 Modified Files: __init__.py Log Message: nothing changed (still struggeling with CVS) Index: __init__.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/api/com/__init__.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** __init__.py 29 Apr 2005 15:20:20 -0000 1.1.1.1 --- __init__.py 1 May 2005 15:14:39 -0000 1.2 *************** *** 0 **** --- 1 ---- + |
From: jürgen u. <cer...@us...> - 2005-05-01 15:13:17
|
Update of /cvsroot/wnd/wnd/wnd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18626 Modified Files: fwtypes.py Log Message: nothing changed (still struggeling with CVS) Index: fwtypes.py =================================================================== RCS file: /cvsroot/wnd/wnd/wnd/fwtypes.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fwtypes.py 29 Apr 2005 15:19:38 -0000 1.1.1.1 --- fwtypes.py 1 May 2005 15:13:09 -0000 1.2 *************** *** 1,3 **** ! """framework defined types""" --- 1,5 ---- ! """framework defined types ! ! """ |
From: jürgen u. <cer...@us...> - 2005-05-01 15:11:32
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17590 Modified Files: wnd.dtpl Log Message: corrected doc for max error (was 10, now 0) Index: wnd.dtpl =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/wnd.dtpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** wnd.dtpl 29 Apr 2005 15:15:10 -0000 1.1.1.1 --- wnd.dtpl 1 May 2005 15:11:20 -0000 1.2 *************** *** 273,277 **** <code>GetMaxError()</code><br> <P>Returns the maximum allowable error level ! for the GUI. Default is 10. <br><br> See also: --- 273,277 ---- <code>GetMaxError()</code><br> <P>Returns the maximum allowable error level ! for the GUI. Default is 0. <br><br> See also: *************** *** 283,286 **** --- 283,292 ---- <br><br> + <br><br> + <b>Note</b><br> + You should be carefull when adjusting this value. Especially when using + gdi functions. gdi has a tendency to deadlock the whole system in case + something goes wrong. + </P> |