gambas-devel-svn Mailing List for Gambas (Page 35)
Brought to you by:
gambas
This list is closed, nobody may subscribe to it.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(20) |
Oct
(61) |
Nov
(35) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(27) |
Feb
(24) |
Mar
(13) |
Apr
(95) |
May
(58) |
Jun
(27) |
Jul
(52) |
Aug
(60) |
Sep
(134) |
Oct
(118) |
Nov
(55) |
Dec
(52) |
2008 |
Jan
(149) |
Feb
(73) |
Mar
(152) |
Apr
(68) |
May
(51) |
Jun
(44) |
Jul
(47) |
Aug
(44) |
Sep
(82) |
Oct
(48) |
Nov
(54) |
Dec
(41) |
2009 |
Jan
(82) |
Feb
(48) |
Mar
(30) |
Apr
(21) |
May
(51) |
Jun
(68) |
Jul
(142) |
Aug
(96) |
Sep
(76) |
Oct
(29) |
Nov
(52) |
Dec
(126) |
2010 |
Jan
(73) |
Feb
(77) |
Mar
(120) |
Apr
(79) |
May
(58) |
Jun
(39) |
Jul
(58) |
Aug
(91) |
Sep
(74) |
Oct
(26) |
Nov
(67) |
Dec
(77) |
2011 |
Jan
(110) |
Feb
(100) |
Mar
(85) |
Apr
(107) |
May
(48) |
Jun
(43) |
Jul
(47) |
Aug
(112) |
Sep
(96) |
Oct
(62) |
Nov
(36) |
Dec
(125) |
2012 |
Jan
(54) |
Feb
(75) |
Mar
(65) |
Apr
(117) |
May
(95) |
Jun
(82) |
Jul
(128) |
Aug
(104) |
Sep
(111) |
Oct
(48) |
Nov
(141) |
Dec
(72) |
2013 |
Jan
(50) |
Feb
(36) |
Mar
(40) |
Apr
(23) |
May
(59) |
Jun
(30) |
Jul
(50) |
Aug
(55) |
Sep
(41) |
Oct
(56) |
Nov
(55) |
Dec
(70) |
2014 |
Jan
(72) |
Feb
(71) |
Mar
(31) |
Apr
(31) |
May
(47) |
Jun
(59) |
Jul
(51) |
Aug
(33) |
Sep
(76) |
Oct
(85) |
Nov
(91) |
Dec
(91) |
2015 |
Jan
(88) |
Feb
(42) |
Mar
(97) |
Apr
(31) |
May
(60) |
Jun
(52) |
Jul
(45) |
Aug
(54) |
Sep
(116) |
Oct
(65) |
Nov
(56) |
Dec
(46) |
2016 |
Jan
(48) |
Feb
(25) |
Mar
(87) |
Apr
(47) |
May
(46) |
Jun
(12) |
Jul
(24) |
Aug
(53) |
Sep
(35) |
Oct
(32) |
Nov
(55) |
Dec
(29) |
2017 |
Jan
(41) |
Feb
(13) |
Mar
(7) |
Apr
(17) |
May
(10) |
Jun
(7) |
Jul
(23) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <ga...@us...> - 2015-09-13 07:54:02
|
Revision: 7305 http://sourceforge.net/p/gambas/code/7305 Author: gambas Date: 2015-09-13 07:54:00 +0000 (Sun, 13 Sep 2015) Log Message: ----------- [INTERPRETER] * BUG: Fix interpretation of "../abc" paths. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_archive.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-12 23:21:46
|
Revision: 7304 http://sourceforge.net/p/gambas/code/7304 Author: gambas Date: 2015-09-12 23:21:44 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fix windows using icons not existing anymore. * NEW: Add dark theme versions of some icons. [INTERPRETER] * NEW: "../xxx" now refers to a file located in the parent archive, not necessarily the main project archive. "../../xxx" refers to the grand-parent archive, and so on. A component written in Gambas that receives a relative path is supposed to prefix it with "../" if he wants to access it. Please report any incompatibility! * NEW: File.IsRelative() is a new method that returns if a file is relative, i.e. if it does not starts with '/' or '~'. [GB.FORM] * NEW: The Stock class does not use the Picture cache anymore. It is useless as normally the Stock class is accessed from the Picture[] method. [GB.FORM.MDI] * BUG: When browsing actions, do not try to load an icon for actions that do not have one. [GB.GTK] * NEW: Remove the Picture[] array accessor and the Picture.Flush() method. They are now implemented in the 'gb.gui.base' component. [GB.GTK3] * NEW: Remove the Picture[] array accessor and the Picture.Flush() method. They are now implemented in the 'gb.gui.base' component. [GB.GUI.BASE] * NEW: The Picture[] array accessor and the Picture.Flush() method are now implemented in that component. * NEW: Remove support for theme specific icons. * NEW: Add support for right-to-left specific icons. For example, if an icon is named 'abc-ltr.png', then it will be considered as a 'left-to-right' icon, and the 'abc-rtl.png' icon will be used if the current langauge is right-to-left written. * NEW: Add support for dark theme specific icons. An icon named 'abc-dark.png' will be the dark theme version of the 'abc.png' icon. [GB.QT4] * NEW: Remove the Picture[] array accessor and the Picture.Flush() method. They are now implemented in the 'gb.gui.base' component. * NEW: Message boxes do not support theme specific icons automatically anymore. [GB.QT5] * NEW: Remove the Picture[] array accessor and the Picture.Flush() method. They are now implemented in the 'gb.gui.base' component. * NEW: Message boxes do not support theme specific icons automatically anymore. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Editor/Code/FCompletion.form gambas/trunk/app/src/gambas3/.src/Editor/Form/FFormStack.form gambas/trunk/app/src/gambas3/img/32/startup.png gambas/trunk/comp/src/gb.form/.src/Stock.class gambas/trunk/comp/src/gb.form.dialog/.component gambas/trunk/comp/src/gb.form.dialog/.project gambas/trunk/comp/src/gb.form.mdi/.src/Action/CAction.class gambas/trunk/comp/src/gb.gui.base/.info gambas/trunk/comp/src/gb.gui.base/.list gambas/trunk/gb.gtk/src/CPicture.cpp gambas/trunk/gb.qt4/src/CMessage.cpp gambas/trunk/gb.qt4/src/CPicture.cpp gambas/trunk/main/gbx/gbx_archive.c gambas/trunk/main/gbx/gbx_archive.h gambas/trunk/main/gbx/gbx_c_file.c gambas/trunk/main/gbx/gbx_c_system.c gambas/trunk/main/gbx/gbx_stream.c gambas/trunk/main/gbx/gbx_stream_arch.c gambas/trunk/main/share/gb_file_share.h Added Paths: ----------- gambas/trunk/app/src/gambas3/img/16/average-dark.png gambas/trunk/app/src/gambas3/img/16/comment-dark.png gambas/trunk/app/src/gambas3/img/16/lcase-dark.png gambas/trunk/app/src/gambas3/img/16/percent-dark.png gambas/trunk/app/src/gambas3/img/16/ucase-dark.png gambas/trunk/app/src/gambas3/img/16/uncomment-dark.png gambas/trunk/app/src/gambas3/img/16/wrap-dark.png gambas/trunk/app/src/gambas3/img/32/startup-dark.png gambas/trunk/app/src/gambas3/img/64/atari-dark.png gambas/trunk/comp/src/gb.gui.base/.src/Message.class gambas/trunk/comp/src/gb.gui.base/.src/Picture.class gambas/trunk/comp/src/gb.gui.base/message/ Removed Paths: ------------- gambas/trunk/gb.qt4/share/gb.form.picture.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2015-09-12 19:52:40
|
Revision: 7303 http://sourceforge.net/p/gambas/code/7303 Author: tobiasboe Date: 2015-09-12 19:52:38 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [GB.INOTIFY] * BUG: (Bug 730) Don't pass NULL key and zero length to GB.HashTable.Remove() * OPT: Use GB.StringLength() where possible Modified Paths: -------------- gambas/trunk/main/lib/inotify/c_watch.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-12 18:37:47
|
Revision: 7302 http://sourceforge.net/p/gambas/code/7302 Author: gambas Date: 2015-09-12 18:37:46 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: "F2" now correctly finds the definition of classes used as method or array. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-12 17:37:33
|
Revision: 7301 http://sourceforge.net/p/gambas/code/7301 Author: gambas Date: 2015-09-12 17:37:31 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [GB.FORM.EDITOR] * BUG: TextEditor: Reset the cursor position before actually setting the Text property, to avoid a possible crash. [GB.GUI.BASE] * NEW: ScrollArea: Ignore Style.ScrollBarSpacing when layouting scrollbars. Modified Paths: -------------- gambas/trunk/comp/src/gb.form.editor/.info gambas/trunk/comp/src/gb.form.editor/.src/TextEditor.class gambas/trunk/comp/src/gb.gui.base/.src/ScrollArea.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2015-09-12 17:09:10
|
Revision: 7300 http://sourceforge.net/p/gambas/code/7300 Author: tobiasboe Date: 2015-09-12 17:09:08 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [GB.INOTIFY] * BUG: (Bug 730) Don't rely on GB.NewString() to NUL-terminate the string Modified Paths: -------------- gambas/trunk/main/lib/inotify/c_watch.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-12 15:57:57
|
Revision: 7299 http://sourceforge.net/p/gambas/code/7299 Author: gambas Date: 2015-09-12 15:57:55 +0000 (Sat, 12 Sep 2015) Log Message: ----------- [GB.FORM.EDITOR] * NEW: TextEditor: Some ANSI codes are taken into account by the Print() method. * OPT: TextEditor: Print() modifications are not put in the undo buffer. [GB.QT4] * BUG: The parent window of a modal window is correctly set now. * BUG: Window.Visible property does nothing when set with its current value. [GB.QT5] * BUG: The parent window of a modal window is correctly set now. * BUG: Window.Visible property does nothing when set with its current value. Modified Paths: -------------- gambas/trunk/comp/src/gb.form.editor/.src/CDocument.class gambas/trunk/comp/src/gb.form.editor/.src/TextEditor.class gambas/trunk/comp/src/gb.gui.base/.src/Action.class gambas/trunk/gb.qt4/src/CWindow.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-11 20:35:59
|
Revision: 7298 http://sourceforge.net/p/gambas/code/7298 Author: gambas Date: 2015-09-11 20:35:57 +0000 (Fri, 11 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Profile windows should not crash anymore when displaying percentage values. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Debug/FProfile.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-11 03:02:59
|
Revision: 7297 http://sourceforge.net/p/gambas/code/7297 Author: gambas Date: 2015-09-11 03:02:58 +0000 (Fri, 11 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Code formating when saving does not prevent modification flag to work anymore. * NEW: Option dialog: Change the order of panels. [GB.FORM.EDITOR] * NEW: TextEditor: The Save() and Reset() methods now cancel any pending Change event. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class gambas/trunk/app/src/gambas3/.src/Options/FOption.form gambas/trunk/app/src/gambas3/.src/Save.module gambas/trunk/comp/src/gb.form.editor/.src/TextEditor.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-10 21:46:57
|
Revision: 7296 http://sourceforge.net/p/gambas/code/7296 Author: gambas Date: 2015-09-10 21:46:56 +0000 (Thu, 10 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The label of the check-box that adds the vendor prefix to the package names is clearer now. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.src/Options/FOption.form gambas/trunk/app/src/gambas3/.src/Packager/FMakeInstall.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-10 21:38:53
|
Revision: 7295 http://sourceforge.net/p/gambas/code/7295 Author: gambas Date: 2015-09-10 21:38:52 +0000 (Thu, 10 Sep 2015) Log Message: ----------- [GB.DBUS] * NEW: DBus.IsRegistered() is a new method that returns if a specific DBusObject has been registered to a bus. [GB.DBUS.TRAYICON] * BUG: Correctly export menus that are not visible. Modified Paths: -------------- gambas/trunk/comp/src/gb.dbus.trayicon/.component gambas/trunk/comp/src/gb.dbus.trayicon/.project gambas/trunk/comp/src/gb.dbus.trayicon/.src/DBusStatusIconMenu.class gambas/trunk/comp/src/gb.dbus.trayicon/.src/FTest.form gambas/trunk/comp/src/gb.dbus.trayicon/.src/TrayIcon.class gambas/trunk/comp/src/gb.dbus.trayicon/.startup gambas/trunk/gb.dbus/src/gb.dbus/.src/DBus.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 23:54:02
|
Revision: 7294 http://sourceforge.net/p/gambas/code/7294 Author: gambas Date: 2015-09-08 23:54:00 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Let the MessageView control use its default colors. [GB.FORM] * NEW: MessageView default colors are now default text background and foreground. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/FMain.form gambas/trunk/app/src/gambas3/.src/Project.module gambas/trunk/comp/src/gb.form/.src/Message/MessageView.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 23:00:45
|
Revision: 7293 http://sourceforge.net/p/gambas/code/7293 Author: gambas Date: 2015-09-08 23:00:43 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [GB.DBUS] * BUG: Replace hyphens by dots in the entire interface names. Modified Paths: -------------- gambas/trunk/gb.dbus/src/gb.dbus/.src/DBusObject.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 13:40:21
|
Revision: 7292 http://sourceforge.net/p/gambas/code/7292 Author: gambas Date: 2015-09-08 13:40:19 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [GB.DB.SQLITE3] * BUG: Fix debug message printed when DB.Debug is set. Modified Paths: -------------- gambas/trunk/gb.db.sqlite3/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 13:39:43
|
Revision: 7291 http://sourceforge.net/p/gambas/code/7291 Author: gambas Date: 2015-09-08 13:39:42 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [GB.DB.ODBC] * NEW: Internal query routine is now similar to other database drivers. DB.Debug is taken into account, and prints all queries sent, and the number of rows returned. Modified Paths: -------------- gambas/trunk/gb.db.odbc/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 13:24:15
|
Revision: 7290 http://sourceforge.net/p/gambas/code/7290 Author: gambas Date: 2015-09-08 13:24:13 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [GB.DB.ODBC] * NEW: Rewrite result allocation. Modified Paths: -------------- gambas/trunk/gb.db.odbc/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-08 01:50:06
|
Revision: 7289 http://sourceforge.net/p/gambas/code/7289 Author: gambas Date: 2015-09-08 01:50:05 +0000 (Tue, 08 Sep 2015) Log Message: ----------- [GB.DBUS] * BUG: Replace hyphens by dots in normalized interface names. But allow them in application names (as well as underscores). Modified Paths: -------------- gambas/trunk/gb.dbus/src/gb.dbus/.project gambas/trunk/gb.dbus/src/gb.dbus/.src/DBus.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-07 22:03:44
|
Revision: 7288 http://sourceforge.net/p/gambas/code/7288 Author: gambas Date: 2015-09-07 22:03:43 +0000 (Mon, 07 Sep 2015) Log Message: ----------- [COMPILER] * NEW: Take into account the "Use 'VERSION' file" project option to compute the actual version in the .startup file. Modified Paths: -------------- gambas/trunk/main/gbc/gbc_compile.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-07 10:41:17
|
Revision: 7287 http://sourceforge.net/p/gambas/code/7287 Author: gambas Date: 2015-09-07 10:41:15 +0000 (Mon, 07 Sep 2015) Log Message: ----------- [GB.FORM.EDITOR] * NEW: TextEditor: SHIFT key + mouse click now selects text. Modified Paths: -------------- gambas/trunk/comp/src/gb.form.editor/.src/TextEditor.class gambas/trunk/comp/src/gb.form.editor/.startup gambas/trunk/comp/src/gb.media.form/.component gambas/trunk/comp/src/gb.media.form/.project gambas/trunk/comp/src/gb.media.form/.src/FTest.form gambas/trunk/comp/src/gb.media.form/.startup This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-07 00:30:34
|
Revision: 7286 http://sourceforge.net/p/gambas/code/7286 Author: gambas Date: 2015-09-07 00:30:33 +0000 (Mon, 07 Sep 2015) Log Message: ----------- [GB.QT4] * BUG: Fix initial window screen again. [GB.QT5] * BUG: Fix initial window screen again. Modified Paths: -------------- gambas/trunk/gb.qt4/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-07 00:01:02
|
Revision: 7285 http://sourceforge.net/p/gambas/code/7285 Author: gambas Date: 2015-09-07 00:01:00 +0000 (Mon, 07 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Don't define an initial position to the tips window. [GB.QT4] * BUG: Yes, initial screen of new windows needs to be fixed again. [GB.QT5] * BUG: Yes, initial screen of new windows needs to be fixed again. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Help/FTips.form gambas/trunk/gb.qt4/src/CWidget.cpp gambas/trunk/gb.qt4/src/CWindow.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-06 22:54:57
|
Revision: 7284 http://sourceforge.net/p/gambas/code/7284 Author: gambas Date: 2015-09-06 22:54:56 +0000 (Sun, 06 Sep 2015) Log Message: ----------- [GB.QT4] * BUG: Guess what: continue fixing modal dialog initial screen... [GB.QT5] * BUG: Guess what: continue fixing modal dialog initial screen... Modified Paths: -------------- gambas/trunk/gb.qt4/src/CWidget.cpp gambas/trunk/gb.qt4/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-06 22:34:18
|
Revision: 7283 http://sourceforge.net/p/gambas/code/7283 Author: gambas Date: 2015-09-06 22:34:17 +0000 (Sun, 06 Sep 2015) Log Message: ----------- [GB.QT4] * BUG: Continue fixing modal dialog initial screen... [GB.QT5] * BUG: Continue fixing modal dialog initial screen... Modified Paths: -------------- gambas/trunk/gb.qt4/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-06 18:16:14
|
Revision: 7282 http://sourceforge.net/p/gambas/code/7282 Author: gambas Date: 2015-09-06 18:16:12 +0000 (Sun, 06 Sep 2015) Log Message: ----------- [GB.GTK] * BUG: Remove the Screens.Primary property, it is useless (it is always 0). [GB.GTK3] * BUG: Remove the Screens.Primary property, it is useless (it is always 0). [GB.QT4] * BUG: Continue fixing modal dialog initial screen. * BUG: Remove the Screens.Primary property, it is useless (it is always 0). [GB.QT5] * BUG: Continue fixing modal dialog initial screen. * BUG: Remove the Screens.Primary property, it is useless (it is always 0). Modified Paths: -------------- gambas/trunk/gb.gtk/src/CScreen.cpp gambas/trunk/gb.gtk/src/gdesktop.cpp gambas/trunk/gb.gtk/src/gdesktop.h gambas/trunk/gb.qt4/src/CScreen.cpp gambas/trunk/gb.qt4/src/CWindow.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-09-06 15:12:40
|
Revision: 7281 http://sourceforge.net/p/gambas/code/7281 Author: gambas Date: 2015-09-06 15:12:38 +0000 (Sun, 06 Sep 2015) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * OPT: Code formatting is faster now by working on a temporary line buffer. [WEBSITE MAKER] * NEW: Update to 3.8.1 version. [GB.GTK] * NEW: Screens.Primary is a new property that returns the primary screen number. [GB.GTK3] * NEW: Screens.Primary is a new property that returns the primary screen number. [GB.QT4] * BUG: Continue fixing modal dialog initial screen. * NEW: Screens.Primary is a new property that returns the primary screen number. [GB.QT5] * BUG: Continue fixing modal dialog initial screen. * NEW: Screens.Primary is a new property that returns the primary screen number. Modified Paths: -------------- gambas/trunk/app/other/MakeWebSite/.settings gambas/trunk/app/other/MakeWebSite/.src/MMain.module gambas/trunk/app/other/MakeWebSite/gambas.sourceforge.net/home.html gambas/trunk/app/src/gambas3/.src/Editor/Code/MPrettyCode.module gambas/trunk/comp/src/gb.form.editor/.component gambas/trunk/comp/src/gb.form.editor/.project gambas/trunk/comp/src/gb.form.mdi/.component gambas/trunk/comp/src/gb.form.mdi/.project gambas/trunk/comp/src/gb.form.mdi/.src/FMain.class gambas/trunk/comp/src/gb.form.mdi/.src/FMain.form gambas/trunk/comp/src/gb.settings/.component gambas/trunk/comp/src/gb.settings/.project gambas/trunk/comp/src/gb.settings/.src/Settings.class gambas/trunk/gb.gtk/src/CScreen.cpp gambas/trunk/gb.gtk/src/gdesktop.cpp gambas/trunk/gb.gtk/src/gdesktop.h gambas/trunk/gb.qt4/src/CScreen.cpp gambas/trunk/gb.qt4/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |