To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54902
Issue #:|54902
Summary:|Remove unnecessary static function in
|cppuhelper/bootstrap.cxx
Component:|udk
Version:|current
Platform:|All
URL:|
OS/Version:|All
Status:|NEW
Status whiteboard:|
Keywords:|
Resolution:|
Issue type:|DEFECT
Priority:|P3
Subcomponent:|code
Assigned to:|kr
Reported by:|cyb
------- Additional comments from [EMAIL PROTECTED] Wed Sep 21 05:20:44 -0700
2005 -------
Change
<old>
111 static void MyDummySymbolWithinLibrary(){}
112 OUString const & get_this_libpath()
113 {
114 static OUString s_path;
115 if (0 == s_path.getLength())
116 {
117 OUString path;
118 Module::getUrlFromAddress( (void*) MyDummySymbolWithinLibrary, path
);
119 path = path.copy( 0, path.lastIndexOf( '/' ) );
120 MutexGuard guard( Mutex::getGlobalMutex() );
121 if (0 == s_path.getLength())
122 s_path = path;
123 }
124 return s_path;
125 }
</old>
to
<new>
112 OUString const & get_this_libpath()
113 {
114 static OUString s_path;
115 if (0 == s_path.getLength())
116 {
117 OUString path;
118 Module::getUrlFromAddress( (void*)(get_this_libpath), path );
119 path = path.copy( 0, path.lastIndexOf( '/' ) );
120 MutexGuard guard( Mutex::getGlobalMutex() );
121 if (0 == s_path.getLength())
122 s_path = path;
123 }
124 return s_path;
125 }
</new>
cyb->kr: Assigning to you, as already discussed. Just a reminder for you :-).
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]