summaryrefslogtreecommitdiff
path: root/wizards
AgeCommit message (Collapse)AuthorFilesLines
2014-11-10fix spelling implemenation -> implementationNoel Grandin4-10/+10
Change-Id: I5ac499df1f4063a80a5d41f60778106a7b96940d
2014-11-07default to ods instead of sxcCaolán McNamara1-8/+8
Change-Id: I66e6905237307f177fadfef2ffc13f04ffc43921
2014-11-02Access2Base - Extension of GoTorecord action to table/query datasheetsJean-Pierre Ledure1-25/+28
Change-Id: I334491e2c75e666bde9db25a01abd5f71a993153
2014-11-01Access2Base - new ApplyFilter and SetOrderBy actionsJean-Pierre Ledure6-13/+167
Those actions are meaningful when applied on Table and Query datasheets. Forms and subforms (1 level) supported as well. Change-Id: Ic104559d84ff94f1e7e9bed3db1a13a286953314
2014-10-30Fixed typos. No automatic tools (sed, and so on).Andrea Gelmini3-6/+6
Change-Id: Ia43976d84eede6f699381bc4f3daf89b95e4cb4f Reviewed-on: https://gerrit.libreoffice.org/12150 Reviewed-by: Bryan Quigley <gquigs@gmail.com> Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-10-30java: Method uses the same code for two switch clausesRobert Antoni Buj i Gelonch5-117/+15
Change-Id: Ied82b0a39ff9dc9c7cc9539dec2b963059f3d4a5 Reviewed-on: https://gerrit.libreoffice.org/12139 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-30java: Questionable use of non-short-circuit logicRobert Antoni Buj i Gelonch1-1/+1
Change-Id: Ied831cb5d6645e2696ff2d3d57843fc7a1f82f7e Reviewed-on: https://gerrit.libreoffice.org/12137 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-25Access2Base - Introspection in RootJean-Pierre Ledure2-3/+1
Change-Id: I46d629592a845b3480c04b2ecf545d1b68b510e8
2014-10-17Access2Base - Internal redesign of root structure into a separate class moduleJean-Pierre Ledure12-203/+322
Redesign of CurrentDb, CurrentDoc interfaces. Creation of new Root_.xba class module. Console logs, TempVars and Dialog collections are unchanged. Change-Id: I573a75e8fb54b277aef84d4518cc8e5cc21d7270
2014-10-17java: final fields that can be staticNoel Grandin12-42/+42
Change-Id: I8c06be7bc0b8a38c662209f0de72a00550e25447
2014-10-17java: no need to call String.valueOf to append to a StringNoel Grandin5-8/+8
Change-Id: I5ef45b971d24dde814ab8cbb2e9503d9da4f0d73
2014-10-16java: when rethrowing, store the original exceptionNoel Grandin9-26/+36
Change-Id: I14666493e72da177fcfff1895ef3206f0e13cc01
2014-10-16java: replace 'new Short' with 'Short.valueOf'Noel Grandin2-7/+7
Change-Id: Ic0e3aca1c1459ab938e01f43c0212859d85075e8
2014-10-16java: replace 'new Integer' with 'Integer.valueOf'Noel Grandin1-9/+9
Change-Id: I85aceccae2ba28d9ef2cbf9fb220c5072e5ed3cf
2014-10-16java: reduce the depth of some deeply nested if blocksNoel Grandin1-30/+30
Change-Id: I3c0c7f08d4d8ea594e72fc0d9b93d085d4ab4bf5
2014-10-16java: no need to explicitly code default constructorsNoel Grandin6-27/+0
the compiler will do it automatically Change-Id: I6ee57c3500a4c1c1b96919a69b569686e6c0ead9
2014-10-16java: methods in interfaces are implicitly publicNoel Grandin13-70/+68
Change-Id: I543fe5b8890668f60d6528a2a7ae6d099d5b4945
2014-10-16remove unnecessary catch blockNoel Grandin5-24/+24
Change-Id: Id33384cee3444924e7e8de7d496f117f120b1876
2014-10-16java: use 'Short.valueOf' instead of 'new Short'Noel Grandin42-180/+180
Change-Id: I2f0156899b75dd8a3a5600be887b6ac9b6fbdec0
2014-10-16java: use 'Long.valueOf' instead of 'new Long'Noel Grandin1-2/+2
Change-Id: Idba02391126e5046f77b26b134a76424f7931e0d
2014-10-16java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin41-198/+202
Change-Id: Ia4a847b58862e4f25d64a862f504b629fa336c63
2014-10-16java: use 'Byte.valueOf' instead of 'new Byte'Noel Grandin1-2/+2
Change-Id: I5a9bc87c38cea2d5e671ed779eaedab92e98ac0d
2014-10-15rm ‘public static final’ modifiers from field declarations within interfacesRobert Antoni Buj i Gelonch2-44/+43
Change-Id: I2154052f89787b6fe17edb2f6e6ea132347b3d13 Reviewed-on: https://gerrit.libreoffice.org/11971 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-14java: remove useless javadoc tagsNoel Grandin43-474/+25
Change-Id: I83c59418c9eb32984dd5a2105e3d729e400520a4
2014-10-13java: import from the same packageRobert Antoni Buj i Gelonch3-5/+0
Change-Id: I1bb0999783f365e20b682c3707e73c65724265c9 Reviewed-on: https://gerrit.libreoffice.org/11955 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-11It is more efficient to use the integer implementations of String.indexOf()Robert Antoni Buj i Gelonch1-1/+1
Change-Id: Idb1e4945088b8443e9b507826e5289ee758a2bd2 Reviewed-on: https://gerrit.libreoffice.org/11919 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-07java: use isEmpty() instead of "size() == 0"Noel Grandin2-2/+2
Change-Id: I23e1038246999b0744d8e9ae83b66fa1f7dafa99
2014-10-07java: use equalsIgnoreCase() instead of toLowerCase().equals()Noel Grandin1-1/+1
Change-Id: I8f4afc7e15a9d85d99ea80edbbbd2b507b254ddc
2014-10-07java: simplify conditions involving logical negationNoel Grandin5-5/+5
Change-Id: Ib45e58273e650ef9a31dbdb5f71e995a5976f50e
2014-10-05Access2Base - New TempVars collection and TempVar objectsJean-Pierre Ledure11-44/+411
TempVar objects contain variables (name/value pair) that can be dynamically created and removed by macros. They're useful to transmit values from one document to another, e.g. an .odb document and one or more non-Base documents. Change-Id: I2cb5b3e27620eda16bdeaf59788b80c393fe7d9c
2014-09-24Removed uneeded checks.Ryan McCoskrie1-21/+5
Change-Id: I9fd008f0265f195a8069526cea22a288ff6238f7 Reviewed-on: https://gerrit.libreoffice.org/11562 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-09-2284059 - form wizard : files required could not be foundNoel Grandin134-1462/+5786
I've essentially unwound most the Java changes I made te wizards module in the last few months. I will revisit my changes at a later date and make them more carefully :-) Change-Id: I9221a825dc8de6edc96d6db07072aefcd1a37107
2014-09-19Access2Base - (Re)capitalize UNO constantsJean-Pierre Ledure1-4/+4
Some UNO constants (integer, double, ...) were lower cased by Basic IDE. Probably due to AutoCorrection options of IDE ? Change-Id: Ib599a8bc9f26d179ba5befbcd7a915d29554f948
2014-09-15fdo#75107: make colors and styles localizable in Agenda WizardJennifer Liebel3-9/+72
Change-Id: I231370da5ee7185888ec95ba1fb64f678a7c8ea3 Reviewed-on: https://gerrit.libreoffice.org/11412 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2014-09-14Updated example paths in wizards/com/sun/star/wizards/READMERyan McCoskrie1-2/+2
Change-Id: I5bd14f81c5eefc2227662605d6ccb107254c53df Reviewed-on: https://gerrit.libreoffice.org/11440 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-13Access2Base - PATCH-01 Field.setValueJean-Pierre Ledure2-78/+79
setValue gives erroneously an error message when argument is Null and field is nullable https://forum.openoffice.org/en/forum/viewtopic.php?f=47&t=61447&sid=48e231a12084933d9da1b47e50b186ea#p323714 Change-Id: Ic96e50f4c752f5fa38e8f40e80692f166fd88e4a
2014-09-13Access2Base - Introduction of CloseConnection methodJean-Pierre Ledure4-10/+87
The invocation of CloseConnection has next effects: All the recordsets related to a database linked to the current document are closed. The database object(s) is(are) released. Change-Id: I845b27acb8469c4dea0dc3bc20b912ab123d06cf
2014-09-10wizards: Number Parsingrbuj5-5/+5
Change-Id: Ic8d9c97ee6bc48c8440c27c5ae4fc9bb20fa5acd Reviewed-on: https://gerrit.libreoffice.org/11359 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-09wizards: use a character literalrbuj3-7/+7
Change-Id: I22d530e0feb9e3112b4f2e7548d6335235713247 Reviewed-on: https://gerrit.libreoffice.org/11360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-09-09fix accidental removal of Java wizard codeNoel Grandin1-104/+143
in commit 34bcf9b498bccb5c "java: remove dead methods" Change-Id: Id6d15248f0410a78afa803a72ba3ff0b6a8e7635
2014-09-05resource files: remove unused definitionsThomas Arnhold2-2/+0
Change-Id: Ic782eab6943aa8e659acfceb9f20dac76224c258
2014-09-02wizards: fix javadoc error: bad use of '>'rbuj1-2/+2
Change-Id: Ide61f9ed907e8896ccb64b6c69b3a43068658ace Reviewed-on: https://gerrit.libreoffice.org/11237 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-09-02wizards: fix javadoc error: self-closing element not allowedrbuj6-27/+27
Change-Id: I1ffe498da5fa1410832312b38343aae7bca77203 Reviewed-on: https://gerrit.libreoffice.org/11236 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-09-02wizards: fix javadoc error: text not allowed in <ul> elementrbuj1-2/+2
Change-Id: Ic50f9618c2649fe3e0fbbf2db6a09ea2e1d4c810 Reviewed-on: https://gerrit.libreoffice.org/11239 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-09-02wizards: fix javadoc error: unknown tag: returnsrbuj1-1/+1
Change-Id: I3d10c48a5fac2683f76cf21ef5c746377ca9a8c4 Reviewed-on: https://gerrit.libreoffice.org/11238 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-09-02wizards: fix javadoc error: unknown tag: listrbuj1-2/+2
Change-Id: I293b4fc2c2e0ff4fd591389419f36f04e87c59a1 Reviewed-on: https://gerrit.libreoffice.org/11235 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-08-29java: fix reportbuilder and wizardNoel Grandin2-2/+2
which I broke in commits 70f56bc22fe95 "java: reduce scope, make member classes private" and 34bcf9b498b "java: remove dead methods" Change-Id: Id21482782bbc102e60f346a2bf51096af2fcbe22
2014-08-26increment SBCOUNTRYCOUNT again, we have 19 currencies 0..18Eike Rathke1-1/+1
Apparently this seems to have been forgotten at one occasion. Change-Id: I1436e412c1308f451d9d953f432a9887cfc99b59
2014-08-26ditch unused sCurrUNKNOWN and sCurrSYSUNKNOWN stringsEike Rathke2-14/+0
Apart from that they weren't currencies and only in the way when adding a new currency. Change-Id: If8ca3ab3b37f3617c3f73a01428c0c30dd3481d7
2014-08-26adapt SBCOUNTRYCOUNTEike Rathke1-1/+1
Change-Id: Iadf4ae9a569388528f1083c22d6ff197d6479ba9