[Libreoffice-commits] core.git: instsetoo_native/inc_common

2017-01-01 Thread tamsil1amani3
 instsetoo_native/inc_common/windows/msi_templates/Binary/setup.ico |binary
 1 file changed

New commits:
commit 1cb1cc30b5eb75483b6aaeec0192f7ee1d833461
Author: tamsil1amani3 
Date:   Tue Dec 27 21:50:08 2016 +0530

tdf#103677 Icons Change

Changed setup.ico to a more decent and elegant looking one

Change-Id: I7c9ad6903d0319f22ad0a2202cb808a304f1fc12
Reviewed-on: https://gerrit.libreoffice.org/32457
Tested-by: Jenkins 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/instsetoo_native/inc_common/windows/msi_templates/Binary/setup.ico 
b/instsetoo_native/inc_common/windows/msi_templates/Binary/setup.ico
index 3580448..29b0e61 100644
Binary files 
a/instsetoo_native/inc_common/windows/msi_templates/Binary/setup.ico and 
b/instsetoo_native/inc_common/windows/msi_templates/Binary/setup.ico differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: jvmfwk/inc jvmfwk/source

2016-12-24 Thread tamsil1amani3
 jvmfwk/inc/elements.hxx |  347 
 jvmfwk/inc/fwkutil.hxx  |   97 
 jvmfwk/inc/vendorplugin.hxx |2 
 jvmfwk/source/elements.hxx  |  347 
 jvmfwk/source/fwkutil.hxx   |   97 
 5 files changed, 445 insertions(+), 445 deletions(-)

New commits:
commit 7a07610588893a2061eaafead36cdd8eabb2b52b
Author: tamsil1amani3 
Date:   Sun Dec 25 03:55:01 2016 +0530

tdf#95416 Fix include file

Moved elements.hxx and fwkutil.hxx to jvmfwk/inc and changed the #include 
line in vendorplugin.hxx

Change-Id: Ida7395e952c482af92c0561a7756be7cd0578b9f
Reviewed-on: https://gerrit.libreoffice.org/32415
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/jvmfwk/source/elements.hxx b/jvmfwk/inc/elements.hxx
similarity index 100%
rename from jvmfwk/source/elements.hxx
rename to jvmfwk/inc/elements.hxx
diff --git a/jvmfwk/source/fwkutil.hxx b/jvmfwk/inc/fwkutil.hxx
similarity index 100%
rename from jvmfwk/source/fwkutil.hxx
rename to jvmfwk/inc/fwkutil.hxx
diff --git a/jvmfwk/inc/vendorplugin.hxx b/jvmfwk/inc/vendorplugin.hxx
index 8df13b1..c9a2ccb 100644
--- a/jvmfwk/inc/vendorplugin.hxx
+++ b/jvmfwk/inc/vendorplugin.hxx
@@ -27,7 +27,7 @@
 #include "jni.h"
 #include 
 #include 
-#include "../source/elements.hxx"
+#include "elements.hxx"
 #include 
 
 /**
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sc/source

2016-12-24 Thread tamsil1amani3
 sc/source/core/opencl/op_financial.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 452b8334e60082c113809f90fd59967ac9c471a2
Author: tamsil1amani3 
Date:   Sun Dec 25 03:44:28 2016 +0530

tdf#39674 Converted terms from German to English

Renamed variable fSchaetwert -> fEstimated

Change-Id: Ia02c5c58149191286ec7dda2ad4ac2032aa4124a
Reviewed-on: https://gerrit.libreoffice.org/32414
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/sc/source/core/opencl/op_financial.cxx 
b/sc/source/core/opencl/op_financial.cxx
index fce903e..a10f094 100644
--- a/sc/source/core/opencl/op_financial.cxx
+++ b/sc/source/core/opencl/op_financial.cxx
@@ -929,7 +929,7 @@ void IRR::GenSlidingWindowFunction(std::stringstream &ss,
 ss << "int gid0 = get_global_id(0);\n";
 FormulaToken* pSur = vSubArguments[1]->GetFormulaToken();
 assert(pSur);
-ss << "double fSchaetzwert = ";
+ss << "double fEstimated = ";
 ss << vSubArguments[1]->GenSlidingWindowDeclRef() << ";\n";
 ss << "double fEps = 1.0;\n";
 ss << "double x = 0.0, xNeu = 0.0, fZaehler = 0.0, fNenner = 0.0;\n";
@@ -939,18 +939,18 @@ void IRR::GenSlidingWindowFunction(std::stringstream &ss,
 const formula::SingleVectorRefToken* pSVR =
 static_cast< const formula::SingleVectorRefToken* >(pSur);
 ss << "if (gid0 >= " << pSVR->GetArrayLength() << ")\n";
-ss << "fSchaetzwert = 0.1;\n";
-ss << "if (isnan(fSchaetzwert))\n";
+ss << "fEstimated = 0.1;\n";
+ss << "if (isnan(fEstimated))\n";
 ss << "x = 0.1;\n";
 ss << "else\n";
 }
 else if (pSur->GetType() == formula::svDouble)
 {
-ss << "if (isnan(fSchaetzwert))\n";
+ss << "if (isnan(fEstimated))\n";
 ss << "x = 0.1;\n";
 ss << "else\n";
 }
-ss << "x = fSchaetzwert;\n";
+ss << "x = fEstimated;\n";
 ss << "unsigned short nItCount = 0;\n";
 ss << "while (fEps > Epsilon && nItCount < 20){\n";
 ss << "nCount = 0.0; fZaehler = 0.0;  fNenner = 0.0;\n";
@@ -1061,7 +1061,7 @@ void IRR::GenSlidingWindowFunction(std::stringstream &ss,
 ss << "fEps = fabs(xNeu - x);\n";
 ss << "x = xNeu;\n";
 ss << "nItCount++;\n}\n";
-ss << "if (fSchaetzwert == 0.0 && fabs(x) < Epsilon)\n";
+ss << "if (fEstimated == 0.0 && fabs(x) < Epsilon)\n";
 ss << "x = 0.0;\n";
 ss << "if (fEps < Epsilon)\n";
 ss << "return x;\n";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: extras/source

2016-12-24 Thread tamsil1amani3
 extras/source/wordbook/technical.dic |   29 +
 1 file changed, 29 insertions(+)

New commits:
commit 10ef8042eb6c5ae75ea78688eb4289c74835d308
Author: tamsil1amani3 
Date:   Thu Dec 22 21:51:25 2016 +0530

tdf#87605 Update technical dictionary

Added new technical terms in extras/source/wordbook/technical.dic

Change-Id: I3144c959b04335e69cd3ad9780b6cc11eb0ab0d9
Reviewed-on: https://gerrit.libreoffice.org/32347
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/extras/source/wordbook/technical.dic 
b/extras/source/wordbook/technical.dic
index e23c107..538138a 100644
--- a/extras/source/wordbook/technical.dic
+++ b/extras/source/wordbook/technical.dic
@@ -7,10 +7,12 @@ Acer
 Acrobat
 Add-in
 Adobe
+ADSL
 Advanced
 AIX=
 Amiga=
 AMD
+Analogue
 Android
 ANSI
 AppArmor
@@ -28,9 +30,13 @@ Base24=
 BeOS=
 Bing
 Bitcoin
+Bluetooth
+Boolean
 BorderManager
+Browser
 BSD=
 CADView=
+Cache
 Calc=
 Canon
 Canonical
@@ -47,6 +53,9 @@ ConsoleOne
 ConText=
 COREid=
 Corporation
+Cyber
+Cybercrime
+Cybersecurity
 dBase
 Debian
 debootstrap
@@ -56,6 +65,7 @@ DocLink
 Docuflex=
 Documaker=
 Document
+Domain
 dpkg
 Draw=
 eDirectory
@@ -70,12 +80,14 @@ Facebook
 Fedora=
 Firebird
 Firefox
+Firewall
 FLAC
 Flash
 Foundation
 Foxconn
 FreeBSD
 Fujitsu
+Gateway
 gcc
 gcj
 GHz
@@ -102,8 +114,11 @@ iFolder
 iManager
 Impress=
 Intel
+Internet
+Intranet
 iOS
 iPrint
+ISP
 JavaScript
 Jessie
 JPEG
@@ -111,6 +126,7 @@ KDE
 Kerberos
 kHz
 Kubuntu
+LAN
 Launchpad
 LDAP
 Lenny
@@ -121,15 +137,18 @@ Lucid
 Lynx
 Macintosh=
 Malone
+Malware
 ManageWise
 MasterCard
 Math=
 Maverick
 Meerkat
+Megabyte
 MHz
 Micro
 Microsoft=
 MicroStrategy=
+Modem
 Mono
 Motorola
 Mozilla
@@ -148,6 +167,7 @@ NRadius
 ODBC
 Ogg
 OnDemand
+Online
 OpenBSD
 OpenDocument=
 OpenOffice.org=
@@ -161,15 +181,20 @@ Oracle=
 Panasonic
 Pangolin
 PayPal
+PDF
 PeopleSoft=
+Phishing
 Plug-in
 PNG
 PolyServe
 POP3
 PostgreSQL
 Precise
+Processor
+Programming
 PPPoE
 Quanta
+Resolution
 RHEL=
 Rosetta
 RosettaNet=
@@ -217,8 +242,10 @@ Ubuntu
 uname
 Unicorn
 Unity
+Unzip
 Utopic
 URL
+Virus
 Visa
 VoIP=
 Vorbis
@@ -231,6 +258,7 @@ WiMAX
 Windows
 Woody
 WorkPlace
+WPA
 Writer=
 WYSIWYG
 Xen
@@ -241,6 +269,7 @@ Xubuntu
 Yahoo
 YouTube
 ZENworks
+Zip
 α
 β
 γ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits