Difference between revisions of "Hacking procedure on Fedora"

From CDOT Wiki
Jump to: navigation, search
(New page: == Make a change ==)
 
(Make a change)
Line 1: Line 1:
 
== Make a change ==
 
== Make a change ==
 +
For example, have a hack at vcl/source/window/menu.cxx (Menu::SetItemText); (near line 1821) I suggest manually applying this change:
 +
<pre>
 +
-              pData->aText = rStr;
 +
+              pData->aText = String(rStr).Reverse();
 +
</pre>
 +
then save it
 +
 +
== Rebuild your source ==
 +
== Installing ==
 +
* [[Installing]]
 +
== Run ==
 +
* your_installation_dir/program/soffice

Revision as of 22:14, 14 February 2009

Make a change

For example, have a hack at vcl/source/window/menu.cxx (Menu::SetItemText); (near line 1821) I suggest manually applying this change:

-               pData->aText = rStr;
+               pData->aText = String(rStr).Reverse();

then save it

Rebuild your source

Installing

Run

  • your_installation_dir/program/soffice