Commit Graph

1743 Commits

Author SHA1 Message Date
8a0685d49f make ResId::toString a non-static member
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
2012-04-30 11:22:09 +01:00
a4feeebd37 refactor ImpSvtData 2012-04-25 16:06:54 +01:00
0e3bd5c0c4 Display correct errorbars columns in chart data browser. 2012-04-11 17:55:41 +02:00
8e5318b0b9 OUString( whatever ? "foo" : "bar" ) does not work with MSVC 2012-04-08 19:24:00 +02:00
1bdc495ccc Cleanup of C2U macro in chart2. 2012-04-08 10:48:08 -04:30
561a2d63ea Cleanup of C2U macro in chart2. 2012-04-08 10:47:56 -04:30
d6bc02f8c4 Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator 2012-04-06 20:03:42 +02:00
743f22045c Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator
Pattern used:

find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06 15:07:41 +02:00
8a01ee6243 Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator
Pattern used:

find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06 14:30:05 +02:00
5688b51bcb UniString::CreateFromInt32 -> rtl::OUString::valueOf 2012-04-05 13:59:05 +01:00
6ac9544454 Cleanup some unnecessary #include 2012-04-03 20:49:08 +02:00
16244e7f24 removed duplicate includes in avmedia / basic / canvas / chart2 / comphelper 2012-03-28 00:30:29 +09:00
34ab87b37d Removed use of UniString. 2012-03-26 16:21:39 -04:00
30cb559136 Remove deprecated chart ObjectType OBJECTTYPE_DATA_ERRORS. 2012-03-23 02:55:33 +01:00
c57bb7b56b Set correct objecttype for errorbar. 2012-03-23 02:55:33 +01:00
92aedd1755 Display Format menu entry when selecting an X errorbar. 2012-03-23 02:55:32 +01:00
6294d8f4df Update DeleteYErrorbar function to handle X and Y bars. 2012-03-23 02:55:32 +01:00
d2e77741cb Set errorbar type attribute when inserting or formating an errorbar. 2012-03-23 02:55:32 +01:00
d02005d648 Return correct ItemConverter object for any errorbar type. 2012-03-23 02:55:32 +01:00
e9d44024e5 Enable support to format chart errorbars. 2012-03-23 02:55:31 +01:00
44c0033392 Handle case XErrorbars in ErrorBarItemConverter::ApplySpecialItem. 2012-03-23 02:55:31 +01:00
bb1979b96b Allow deleting any chart errorbar and set correct action description. 2012-03-23 02:55:31 +01:00
1e27c77338 Add FormatXErrorBar, DeleteXErrorBar menu entries in chart.
-Update ModelState to reflect the changes.
2012-03-23 02:55:31 +01:00
31eaf957da Display XErrorBars in object hierarchy. 2012-03-23 02:55:31 +01:00
7eee4ece68 Enable statistics if chart has any type of errorbars. 2012-03-23 02:55:30 +01:00
34cadd6397 Specialize STR_OBJECT_ERROR_BARS for each errobar type. 2012-03-23 02:55:30 +01:00
701efd06e8 Add chart errorbar type property.
- Make StatisticsItemConverter work with X and Y errorbars.
- Fill errorbar type property in ErrorBarResources.
- Set default value of errorbar type property to Y bar.
2012-03-23 02:55:30 +01:00
2971651cd9 Add chart insert X errorbar toolbar and popup menu entries.
- Dispatch the commands to the proper functions.
2012-03-23 02:55:29 +01:00
cc7ce5a299 Add correct tabpage to chart property dialog.
- Added needed strings resources and ids.
- Added code to handle X and Z errorbars.
2012-03-23 02:55:29 +01:00
3e964eeb7c Set chart objecttype depending on errorbar type. 2012-03-23 02:55:29 +01:00
2ea77e4926 Display correct errorbar in InsertDialog. 2012-03-23 02:55:29 +01:00
2a1d5a428d Make executeDispatch_InsertYErrorBars a generic function.
- Make the function usable for XError and YError bars.
- Rename executeDispatch_InsertYErrorBars to executeDispatch_InsertErrorBars.
- Add a new parameter that control the error bar direction.
- Update arguments in callers.
2012-03-23 02:55:29 +01:00
7d42654aa4 Merge InsertMenu_YErrorBar and InsertYErrorBar commands in chart controller. 2012-03-23 02:55:29 +01:00
3bb87d7c5f Set bar type as YErrorBar when creating InsertErrorBarsDialog. 2012-03-23 02:55:28 +01:00
4a992fed8d Remove default values in InsertErrorBarsDialog constructor.
- Require passing desired error bar to modify in constructor
and not have YErrorBar as default.
2012-03-23 02:55:28 +01:00
6e67c03dc0 Enable -Wnon-virtual-dtor for GCC 4.6
...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-14 13:32:02 +01:00
ca939177d6 remove C2U usage, string literal OUString ctors will do the job
and this also avoids reaching the parse recursion limit with clang,
because all the macros C2U expands to, although clang's limit is
probably tad a bit low
2012-03-12 13:35:59 +01:00
bd205223ec New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type"
for the problem.
2012-03-01 18:00:32 +01:00
d30b4e9fb6 Get rid of size() == 0 2012-02-19 17:07:46 +04:00
23af031b09 Fix typos in comments 2012-02-18 09:35:43 +00:00
761b6b706e Remove unnecessary header files 2012-02-17 18:57:45 +01:00
c5bb73cae7 Get the whole thing to build after the method sig change in SdrObject. 2012-01-31 21:38:58 -05:00
66823037e1 make chart2 ByteString free 2012-01-23 11:37:04 +00:00
94f114550a Improve checking for emptiness 2012-01-21 19:58:45 +01:00
1c7c480e74 Galaxy (default) icon theme is now in icon-themes/galaxy 2012-01-15 12:57:51 +01:00
5b031b4ea6 Remove superfluous _ZFORLIST_DECLARE_TABLE definition. 2012-01-07 22:14:05 +04:00
d59211357a Removed unnecessary tools/debug.hxx includes. 2012-01-06 23:55:51 +01:00
791b1e941e Remove unused header 2011-12-25 00:16:31 +01:00
5c1dc778d6 remove some unused code 2011-12-22 10:46:58 +00:00
6a8f6c4b13 Removed extra semicolons 2011-12-15 16:38:50 +00:00