Skip to main content



      Home
Home » Archived » BIRT » HowTo handle "org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;" on Linux?
HowTo handle "org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;" on Linux? [message #10768] Thu, 24 February 2005 17:38 Go to next message
Eclipse UserFriend
Hi

I have a combilation problem in Linux.
How should I handle the compilation problem
with:
org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;

??

greetings

Andreas
Re: HowTo handle "org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;" on Linux? [message #10799 is a reply to message #10768] Thu, 24 February 2005 18:35 Go to previous message
Eclipse UserFriend
Hi Andreas,

We've used some static OS specific code to support rendering of underline
and strikethrough text support for the Win32 OS. This needs to be called
dynamically using reflection instead. Thank you for pointing it out.

You could safely comment out this block of code for now:

org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;
lf.lfQuality = 4; // ANTIALIASED_QUALITY
if (fd.isStrikethrough())
{
lf.lfStrikeOut = 1;
}
if (fd.isUnderline())
{
lf.lfUnderline = 1;
}

We will update the source for this shortly.

Regards,

Rohit Colaco
ECE Project Lead

-----

FreeGroup wrote:

> Hi

> I have a combilation problem in Linux.
> How should I handle the compilation problem
> with:
> org.eclipse.swt.internal.win32.LOGFONT lf = fda.data;

> ??

> greetings

> Andreas
Previous Topic:where can i download the BIRT DEMO?
Next Topic:birt build converter project problem can't find class ExtendedDataSetHandle
Goto Forum:
  


Current Time: Sun May 11 05:44:27 EDT 2025

Powered by FUDForum. Page generated in 0.05786 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top