Login

2021-07-04 Thread Neil Murphy
I am told by the web site that my userid has been suspended. It does not say 
how to reach the administrator. So would you please re-instate me?
neilhmurphy at neilhmur...@outlook.com


Re: requesting a bugzilla account

2021-02-03 Thread Neil Waldhauer

Yes, please..

Neil

On 02/03/21 09:34 am, Marcus wrote:

Hi Neil,

for a new Bugzilla account I need a mail address as login name. Shoud 
I use "n...@blondeguy.com"?


Thanks

Marcus



Am 03.02.21 um 16:18 schrieb Neil Waldhauer:
I am using OpenOffice on ArcaOS, and I have a problem with the chart 
feature. I have explored the problem and found a work-around, but I'd 
like to report my findings so that Yuri can have a look when he has 
time. I'm hoping that a good bug report can help.


Thanks for your work on OpenOffice. I use and appreciate the program.





-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



requesting a bugzilla account

2021-02-03 Thread Neil Waldhauer
I am using OpenOffice on ArcaOS, and I have a problem with the chart 
feature. I have explored the problem and found a work-around, but I'd 
like to report my findings so that Yuri can have a look when he has 
time. I'm hoping that a good bug report can help.


Thanks for your work on OpenOffice. I use and appreciate the program.

best regards,
Neil

--
Neil Waldhauer  n...@blondeguy.com  www.blondeguy.com
Expert consulting for OS/2 Warp, ArcaOS and eComStation


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



4K?

2018-07-12 Thread Neil Batho

I am wondering when you will make it look nice in 4k?

thanks!


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: svn commit: r1439359 - /openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx

2013-01-28 Thread Neil
Unsubscribe


On Jan 28, 2013, at 5:13 AM, h...@apache.org wrote:

 Author: hdu
 Date: Mon Jan 28 12:13:41 2013
 New Revision: 1439359
 
 URL: http://svn.apache.org/viewvc?rev=1439359view=rev
 Log:
 #i121534# fix graphite-enabled windows build
 
 Modified:
openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx
 
 Modified: openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx
 URL: 
 http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx?rev=1439359r1=1439358r2=1439359view=diff
 ==
 --- openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx (original)
 +++ openoffice/trunk/main/vcl/win/source/gdi/winlayout.cxx Mon Jan 28 
 12:13:41 2013
 @@ -2937,7 +2937,7 @@ void  GraphiteWinLayout::AdjustLayout(Im
 void GraphiteWinLayout::DrawText(SalGraphics sal_graphics) const
 {
 HFONT hOrigFont = DisableFontScaling();
 -HDC aHDC = static_castWinSalGraphics(sal_graphics).mhDC;
 +const HDC aHDC = static_castWinSalGraphics(sal_graphics).getHDC();
 maImpl.DrawBase() = WinLayout::maDrawBase;
 maImpl.DrawOffset() = WinLayout::maDrawOffset;
 const int MAX_GLYPHS = 2;
 @@ -2956,7 +2956,7 @@ void GraphiteWinLayout::DrawText(SalGrap
 NULL, (LPCWSTR)(glyphWStr), nGlyphs, NULL);
 } while (nGlyphs);
 if( hOrigFont )
 -  DeleteFont( SelectFont( mhDC, hOrigFont ) );
 +  DeleteFont( SelectFont( aHDC, hOrigFont ) );
 }
 
 int GraphiteWinLayout::GetTextBreak( long nMaxWidth, long nCharExtra, int 
 nFactor ) const
 @@ -3017,7 +3017,7 @@ SalLayout* WinSalGraphics::GetTextLayout
 {
 #ifdef ENABLE_GRAPHITE
 if (rFontFace.SupportsGraphite())
 -pWinLayout = new GraphiteWinLayout(mhDC, rFontFace, 
 rFontInstance);
 +pWinLayout = new GraphiteWinLayout( getHDC(), rFontFace, 
 rFontInstance);
 else
 #endif // ENABLE_GRAPHITE
 // script complexity is determined in upper layers
 @@ -3044,7 +3044,7 @@ SalLayout* WinSalGraphics::GetTextLayout
 eCharSet = mpLogFont-lfCharSet;
 #ifdef ENABLE_GRAPHITE
 if (rFontFace.SupportsGraphite())
 -pWinLayout = new GraphiteWinLayout(mhDC, rFontFace, 
 rFontInstance);
 +pWinLayout = new GraphiteWinLayout( getHDC(), rFontFace, 
 rFontInstance);
 else
 #endif // ENABLE_GRAPHITE
 pWinLayout = new SimpleWinLayout( getHDC(), eCharSet, rFontFace, 
 rFontInstance );