[Pkg-mozext-commits] [firetray] 25/399: cleaning
David Prévot
taffit at alioth.debian.org
Tue Oct 29 18:23:07 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch dfsg-clean
in repository firetray.
commit 5021a9bd31f88a4ec76bfe4b0c8e1d73bb3413f9
Author: foudfou <foudil.newbie+git at gmail.com>
Date: Sat Aug 27 17:40:27 2011 +0200
cleaning
---
README.md | 2 +-
src/LICENSE | 5 +++++
src/modules/LibGdkWindow.jsm | 13 +++++--------
3 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index d493af8..7a69868 100644
--- a/README.md
+++ b/README.md
@@ -2,4 +2,4 @@ rewrite of **Firetray** with js-ctypes
## KNOWN BUGS ##
-* windows aren't restored with the same z-order, but there is no means to correct that under Linux: https://bugzilla.mozilla.org/show_bug.cgi?id=156333
+* windows aren't restored with the same z-order, but there is [no means to correct that under Linux](https://bugzilla.mozilla.org/show_bug.cgi?id=156333 "GetZOrderDOMWindowEnumerator is broken on Linux")
diff --git a/src/LICENSE b/src/LICENSE
index c5730ce..a8c017e 100644
--- a/src/LICENSE
+++ b/src/LICENSE
@@ -12,3 +12,8 @@ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should be able to obtain a copy of the GNU General Public License from
http://www.gnu.org/licenses/gpl.txt; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+***
+
+LibGdkWindow.jsm, LibGObject.jsm borrowed from Mike Conley
+<mconley at mozillamessaging.com> and lincensed under the MPL/LGPL/GPL tri-license
diff --git a/src/modules/LibGdkWindow.jsm b/src/modules/LibGdkWindow.jsm
index 6bbb6fa..167c292 100644
--- a/src/modules/LibGdkWindow.jsm
+++ b/src/modules/LibGdkWindow.jsm
@@ -6,7 +6,7 @@
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
- *
+ *
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
@@ -21,6 +21,7 @@
*
* Contributor(s):
* Mike Conley <mconley at mozillamessaging.com>
+ * Foudil Brétel <foudil.newbie+amo at gmail.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
@@ -33,7 +34,7 @@
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
- *
+ *
* ***** END LICENSE BLOCK ***** */
var EXPORTED_SYMBOLS = ["LibGdkWindow"];
@@ -158,12 +159,10 @@ XPCOMUtils.defineLazyGetter(this, "gdk_window_hide", function() {
return gdk_window_hide;
});
-
XPCOMUtils.defineLazyGetter(this, "GdkScreen", function() {
return ctypes.StructType("GdkScreen");
});
-// GdkScreen * gdk_screen_get_default (void);
XPCOMUtils.defineLazyGetter(this, "gdk_screen_get_default", function() {
var gdk_screen_get_default =
libgdkwindow.declare("gdk_screen_get_default", ctypes.default_abi, GdkScreen.ptr);
@@ -174,7 +173,6 @@ XPCOMUtils.defineLazyGetter(this, "gdk_screen_get_default", function() {
return gdk_screen_get_default;
});
-// GList * gdk_screen_get_toplevel_windows (GdkScreen *screen);
XPCOMUtils.defineLazyGetter(this, "gdk_screen_get_toplevel_windows", function() {
var gdk_screen_get_toplevel_windows = libgdkwindow.declare(
"gdk_screen_get_toplevel_windows", ctypes.default_abi, LibGObject.GList.ptr,
@@ -190,12 +188,11 @@ XPCOMUtils.defineLazyGetter(this, "gdk_screen_get_toplevel_windows", function()
var LibGdkWindow = {
GdkWindow: GdkWindow,
GdkWindowAttributes: GdkWindowAttributes,
+ GdkScreen: GdkScreen,
GdkX11WindowSetUserTime: gdk_x11_window_set_user_time,
GdkWindowNew: gdk_window_new,
GdkWindowDestroy: gdk_window_destroy,
GdkWindowHide: gdk_window_hide,
-
- GdkScreen: GdkScreen,
GdkScreenGetDefault: gdk_screen_get_default,
- GdkScreenGetToplevelWindows: gdk_screen_get_toplevel_windows,
+ GdkScreenGetToplevelWindows: gdk_screen_get_toplevel_windows
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firetray.git
More information about the Pkg-mozext-commits
mailing list