diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-09-13 04:33:52 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-09-13 04:33:52 +0800 |
commit | 8d53d634f2e2a96495b05657e278a2e8d47efec4 (patch) | |
tree | de6a76d8495b50328262464910e2a5f83ef24506 /embed/xulrunner/src | |
parent | 6db24e97b7e87d4ea7cff0c99f80338ce51eea6f (diff) | |
download | gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar.gz gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar.bz2 gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar.lz gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar.xz gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.tar.zst gsoc2013-epiphany-8d53d634f2e2a96495b05657e278a2e8d47efec4.zip |
We know we do have gecko 1.9, so remove all HAVE_GECKO_* defines.
svn path=/trunk/; revision=7405
Diffstat (limited to 'embed/xulrunner/src')
-rw-r--r-- | embed/xulrunner/src/AutoWindowModalState.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/embed/xulrunner/src/AutoWindowModalState.cpp b/embed/xulrunner/src/AutoWindowModalState.cpp index ca7596b38..f64790214 100644 --- a/embed/xulrunner/src/AutoWindowModalState.cpp +++ b/embed/xulrunner/src/AutoWindowModalState.cpp @@ -25,19 +25,15 @@ AutoWindowModalState::AutoWindowModalState (nsIDOMWindow *aWindow) { -#ifdef HAVE_GECKO_1_9 mWindow = do_QueryInterface (aWindow); if (mWindow) { mWindow->EnterModalState (); } -#endif } AutoWindowModalState::~AutoWindowModalState() { -#ifdef HAVE_GECKO_1_9 if (mWindow) { mWindow->LeaveModalState (); } -#endif } |