diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-02 07:45:24 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-02 07:45:24 +0200 |
commit | 42a3e02f1aad1cd0f35098637b6c548e703edc70 (patch) | |
tree | cee281f1455796c90d5c0548950d9f959905813a /sw | |
parent | af7a972fbc29631b7844440a9fc6863a2b9ae9da (diff) |
WaE: variable 'bRet' is used uninitialized whenever 'if' condition is true
Change-Id: Iba1566931c551dd9d3f0eed7b3192379ed8990c7
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/frmedt/fews.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/frmedt/fews.cxx b/sw/source/core/frmedt/fews.cxx index 32747573a177..16aa9bd09367 100644 --- a/sw/source/core/frmedt/fews.cxx +++ b/sw/source/core/frmedt/fews.cxx @@ -478,7 +478,7 @@ bool SwFEShell::Sort(const SwSortOptions& rOpt) return false; SET_CURR_SHELL( this ); - bool bRet; + bool bRet = false; StartAllAction(); if(IsTableMode()) { |