[Libreoffice-commits] .: 2 commits - dbaccess/source solenv/gbuild solenv/inc
Tor Lillqvist
tml at kemper.freedesktop.org
Tue Oct 25 01:34:10 PDT 2011
dbaccess/source/ui/browser/genericcontroller.cxx | 2 +-
solenv/gbuild/platform/windows.mk | 2 ++
solenv/inc/wntmsc.mk | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
New commits:
commit 605369eec7236f36c73ede5fdb8cba478db0e291
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Tue Oct 25 11:27:54 2011 +0300
WaE: unreferenced local variable
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index 318fdb1..c829e74 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -340,7 +340,7 @@ void SAL_CALL OGenericUnoController::initialize( const Sequence< Any >& aArgumen
impl_initialize();
}
- catch(Exception& e)
+ catch(Exception&)
{
// no one clears my view if I won't
::std::auto_ptr<Window> aTemp(m_pView);
commit cdc5d77ec3ab987e156f41104b986e677396633d
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Tue Oct 25 08:07:52 2011 +0300
Ignore also MSVC warning C4555, as generated by the <list> header in MSVC2008
diff --git a/solenv/gbuild/platform/windows.mk b/solenv/gbuild/platform/windows.mk
index 219232a..c22a187 100644
--- a/solenv/gbuild/platform/windows.mk
+++ b/solenv/gbuild/platform/windows.mk
@@ -113,6 +113,7 @@ gb_CFLAGS := \
-wd4511 \
-wd4512 \
-wd4514 \
+ -wd4555 \
-wd4611 \
-wd4619 \
-wd4625 \
@@ -165,6 +166,7 @@ gb_CXXFLAGS := \
-wd4511 \
-wd4512 \
-wd4514 \
+ -wd4555 \
-wd4611 \
-wd4619 \
-wd4625 \
diff --git a/solenv/inc/wntmsc.mk b/solenv/inc/wntmsc.mk
index 8471135..02e2d91 100644
--- a/solenv/inc/wntmsc.mk
+++ b/solenv/inc/wntmsc.mk
@@ -195,7 +195,7 @@ CFLAGSOUTOBJ=-Fo
# - "warning C4365: conversion from ... to ... signed/unsigned mismatch"
CFLAGSWARNCXX=-Wall -wd4061 -wd4127 -wd4191 -wd4217 -wd4242 -wd4244 -wd4245 -wd4250 -wd4251 -wd4275 \
- -wd4290 -wd4294 -wd4355 -wd4511 -wd4512 -wd4514 -wd4611 -wd4625 -wd4626 \
+ -wd4290 -wd4294 -wd4355 -wd4511 -wd4512 -wd4514 -wd4555 -wd4611 -wd4625 -wd4626 \
-wd4640 -wd4675 -wd4710 -wd4711 -wd4786 -wd4800 -wd4820 -wd4503 -wd4619 \
-wd4365 -wd4668 -wd4738 -wd4826 -wd4350 -wd4505 -wd4692 -wd4189 -wd4005 \
-wd4180
More information about the Libreoffice-commits
mailing list