summaryrefslogtreecommitdiff
path: root/starmath
AgeCommit message (Collapse)AuthorFilesLines
2012-08-15Be more careful in recognizing MathML (bnc#774921)Tor Lillqvist1-4/+14
Change-Id: I82c36a3ff49f74dc674df46dcf35f8c1a991c9e2 (cherry picked from commit aa4b8a8164f01a120ba9bfb2e86b1ed33cc1d69c) Signed-off-by: David Tardon <dtardon@redhat.com>
2012-07-24Correction of context menu entry for Math arccot functionLaurent Balland-Poirier1-1/+1
Change-Id: Ie44783111553d99bc70db81b7b0a31d3b72b254a (cherry picked from commit b0a727729d909fc26898dd0fd29a81834111a147) Signed-off-by: Ivan Timofeev <timofeev.i.s@gmail.com>
2012-07-04Remove duplication of License/Credits informationStefan Knorr (astron)1-1/+0
A bit differently this time around: + remove Credits menu item from menu + remove License button from the About dialog Conflicts: cui/source/dialogs/about.cxx Change-Id: I07c1e115aa209ef1d69458f5b188d73caaae4294
2012-05-31SmParser::GetTokenTableEntry: -Werror=sign-compareMichael Stahl1-1/+1
Change-Id: Iee631653e251b6e4a1b633f25d9d05c10aaff662
2012-05-31targetted SAL_N_ELEMENTS revert.Michael Meeks2-9/+3
Change-Id: Idd43d44dd7fc4bb33be2de5b855a7741de88ec51
2012-05-29fix .component pathsDavid Tardon1-7/+4
Change-Id: I953cdd6f425245aff0d18858d201520938e0e3aa
2012-05-28only need to include ostream here, iostream sucks in global ctorsCaolán McNamara1-2/+1
Change-Id: I829a223f66199214c6dc4a08c6f2f53d7166a586
2012-05-28status bar: Standardize the size of modification status to '9' everywhere.Jan Holesovsky1-2/+2
Change-Id: Ic5f8473fb5edaa84cdcd5a6cb563c6a5c4fadea3
2012-05-24Removed unused SfxMedium::bDirectStephan Bergmann1-1/+1
See the TODO comment in sfx2/inc/sfx2/docfile.hxx about a temporary SfxMedium ctor overload to find not yet adapted uses of another overload, to be removed again in due time. Change-Id: Ie22c33c32f8870ce6ebf6d500abc7a4e33d97183
2012-05-24convert ResStringArray to rtl::OUStringCaolán McNamara2-5/+5
Change-Id: I51b86a10caa5da6e12583c2b22404b0d9282b13d
2012-05-23removed unused temporary rtl::OUStringTakeshi Abe1-1/+0
Change-Id: I9d118a5fbe2306465d8bcdb9ddd0596588137e5e
2012-05-17XubString->rtl::OUStringCaolán McNamara3-5/+7
Change-Id: Ic7426d9838bb1034618c3d553482256d1866878f
2012-05-17fdo#49921 make sure all tab pages have the same dimensionsDavid Tardon1-1/+2
The reason is that they can be combined arbitrarily in dialogs, so changing, e.g., height of one tab can lead to "interesting" results. Cf. commits 8631dbf85fb5ed56d225e32ea5a9c36c96b0d649 and 29042d096a2c5812ae179e1553367afd21b0f71e that were the cause of the problem described fdo#49921. Change-Id: I9995002a2bd5c3604bdfa06dc817916ce61c558d
2012-05-15convert GetUndoActionComment family to rtl::OUStringCaolán McNamara1-1/+1
Change-Id: I36ccf62ee2e2769bcf1aef6d26d96bce6c7078f0
2012-05-14convert GetComment family to rtl::OUStringCaolán McNamara2-3/+3
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
2012-05-13removed unused definesTakeshi Abe3-11/+0
Change-Id: Ida50737f540459bd0e709c49414c3a7f4d042a47
2012-04-30make ResId::toString a non-static memberCaolán McNamara3-3/+5
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-09add package deps for resourcesDavid Tardon1-2/+7
2012-04-08rename gb_CppunitTest_uses_ureDavid Tardon1-1/+1
2012-04-08compile- and run-time use of UNO must be splitDavid Tardon1-0/+2
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk
2012-04-08clean upDavid Tardon1-1/+1
2012-04-08always use --protector for UNO testsDavid Tardon1-4/+0
2012-04-08drop uses_ureDavid Tardon1-2/+0
2012-04-08let use_api handle the use of type rdbs at runtimeDavid Tardon1-4/+0
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
2012-04-08Revert "fdo#41739: Math: do not skip "newline" on error"Ivan Timofeev1-3/+1
This reverts commit f52138deee9e129d0566f06d1d2138b6b159d16a. It was the cause of infinite recursive loops (huh, why, that was obvious!).
2012-04-08starmath: fix DEBUG_ENABLE_DUMPASDOT buildIvan Timofeev1-2/+2
2012-04-08gbuild: "use" vs. "add":Michael Stahl5-13/+13
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2-14/+8
2012-04-05Remove macro RTL_CONSTASCII_USTRINGPARAMOlivier Hallot1-7/+7
Remove macro RTL_CONSTASCII_USTRINGPARAM in starmath (partial)
2012-04-03Some String <-> OUString replacements in starmathOlivier Hallot3-4/+4
Some string to OUString replacements in starmath
2012-04-02Added Help Buttons to dialog buttons in starmathKaran Desai3-5/+162
2012-03-29Remove unnecessary tools/table.hxx #includesNoel Grandin1-1/+0
2012-03-22fdo#41739: Math: do not skip "newline" on errorIvan Timofeev1-1/+3
2012-03-20remove ToDouble/ToFloatCaolán McNamara1-2/+2
2012-03-20make ResId->OUString the primary routeCaolán McNamara1-3/+3
2012-03-20split macros to elide unneeded methodsCaolán McNamara2-3/+1
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-0/+14
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-13string literals in ?: don't get automatically converted to OUStringLuboš Luňák1-1/+3
Technically these two are both const char[8], so gcc/clang keep the resulting type the same, but msvc always converts to const char*, even if the same sizes mean this is not required.
2012-03-12use string literal OUString overloadsLuboš Luňák15-257/+236
2012-03-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák1-4/+2
2012-03-10gbuild: remove some more realpathsMatúš Kukan1-3/+3
Where necessary, replace with wildcard, what does not change path.
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2-4/+4
2012-03-08fold i18npaper into i18nutilCaolán McNamara2-2/+2
It's too small to justify standalone existence. We can accumulate i18n things we link to directly into i18nutil and rework i18npool uno implementions in terms of thin wrappers over i18nutil and prefer linking to i18nutil internally and leave the uno forwarders for use by external components and scripting
2012-03-05Drop an unused variableTor Lillqvist1-3/+1
2012-03-05Replace String by OUStringOlivier Hallot1-2/+2
Replace String by OUString
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann4-4/+4
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-28Avoid temporary rtl::OUStringTakeshi Abe1-1/+1
in scripting / sdext / starmath / stoc / svtools / svx
2012-02-27CRLF to LF, no code changedKorrawit Pruegsanusak1-68/+68
2012-02-27drop UniString::CreateFromInt64Caolán McNamara1-1/+1