aboutsummaryrefslogtreecommitdiff
path: root/source/km/nlpsolver/src
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-12-16 20:52:09 +0100
committerAndras Timar <atimar@suse.com>2012-12-16 21:42:22 +0100
commitc6cfd71c3d302bdb0999888f9c867d70acb40708 (patch)
treede61e5c19879f3b53550039f5d034416482451dd /source/km/nlpsolver/src
parent85f724f5aa1d6a59662a7d1c7ea406a641814bd2 (diff)
update translations for LibreOffice 4.0 beta2
Change-Id: Iff858adb848a543f565e3c0df33c8398c74c754d
Diffstat (limited to 'source/km/nlpsolver/src')
-rw-r--r--source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/km/nlpsolver/src/locale.po2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po b/source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
index 94f720df626..141aa17c41a 100644
--- a/source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
+++ b/source/km/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: NLPSolver\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"POT-Creation-Date: 2012-12-10 11:45+0100\n"
"PO-Revision-Date: 2011-12-21 11:10+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
diff --git a/source/km/nlpsolver/src/locale.po b/source/km/nlpsolver/src/locale.po
index b2ff83ab73c..42682a65afc 100644
--- a/source/km/nlpsolver/src/locale.po
+++ b/source/km/nlpsolver/src/locale.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: locale\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-11-30 12:19+0100\n"
+"POT-Creation-Date: 2012-12-10 11:45+0100\n"
"PO-Revision-Date: 2011-12-21 11:08+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
tion> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 15:26:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 21:24:20 +0200
commit8024118d5c9ac964e35e8c4163ca14a5cd78cc3d (patch)
tree8dd3ef5a8f61723fc3bf3e1d8c5f37a0204bc825 /basic
parent707ac13a3f700c8e4a7f08bdcd5d5321d0a28bc5 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Ibeff6e5cbc20ab86b1e9cb96292acb340849ede3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121149 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbunoobj.cxx3
-rw-r--r--basic/source/sbx/sbxarray.cxx2
-rw-r--r--basic/source/sbx/sbxvalue.cxx4
-rw-r--r--basic/source/sbx/sbxvar.cxx4
4 files changed, 6 insertions, 7 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 4131980848ba..c1753a67aca0 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -4196,8 +4196,7 @@ public:
}
ModuleInvocationProxy::ModuleInvocationProxy( std::u16string_view aPrefix, SbxObjectRef const & xScopeObj )
- : m_aMutex()
- , m_aPrefix( OUString::Concat(aPrefix) + "_" )
+ : m_aPrefix( OUString::Concat(aPrefix) + "_" )
, m_xScopeObj( xScopeObj )
, m_aListeners( m_aMutex )
{
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx
index a54845d1c7c8..d8f16f5891c1 100644
--- a/basic/source/sbx/sbxarray.cxx
+++ b/basic/source/sbx/sbxarray.cxx
@@ -35,7 +35,7 @@ struct SbxVarEntry
// SbxArray
-SbxArray::SbxArray( SbxDataType t ) : SbxBase()
+SbxArray::SbxArray( SbxDataType t )
{
eType = t;
if( t != SbxVARIANT )
diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx