[Libreoffice-bugs] [Bug 94879] add 'm' suffixes to member variables ...

2015-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94879

--- Comment #2 from Commit Notification 
 ---
melikeyurtoglu committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=30b3676624685e260e2ec1909486b971fac129f7

tdf#94879 add 'm' suffixes to member variables

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94879] add 'm' suffixes to member variables ...

2015-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94879

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|easyHack difficultyBeginner |easyHack difficultyBeginner
   |skillCpp topicCleanup   |skillCpp topicCleanup
   ||target:5.1.0

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94879] add 'm' suffixes to member variables ...

2015-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94879

--- Comment #1 from Miklos Vajna  ---
Before it would be done manually, I recently wrote a tool based on clang
libtooling to automate this process.

http://cgit.freedesktop.org/libreoffice/contrib/dev-tools/tree/clang has the
code and documentation on how to do it, basically in this case (because this
class is internal to the sot module) it's a matter of running:

make -sr COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=find-unprefixed-members-wrapper
RENAME_ARGS="-class-name=StgStrm"

to generate a .csv file, then:

make -sr COMPILER_EXTERNAL_TOOL=1 CCACHE_PREFIX=rename-wrapper
RENAME_ARGS="-csv=$HOME/rename.csv"

to generate .new files where the members are prefixed, finally:

for i in $(find . -name "*.new"); do mv -f $i ${i%%.new}; done

to overwrite the original files with the .new ones. All these commands have to
be invoked in the sot/ directory of a build tree where clang is the configured
compiler.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94879] add 'm' suffixes to member variables ...

2015-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94879

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Whiteboard||easyHack difficultyBeginner
   ||skillCpp topicCleanup

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs