[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-11-13 Thread cn
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User cn changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Mon Nov 13 06:58:39 -0800 
2006 ---
ok in ooe_m2 and src680_m193

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-10-31 Thread cn
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User cn changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Tue Oct 31 03:01:02 -0800 
2006 ---
ok in jsc14

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-10-30 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User jsc changed the following:

What|Old value |New value

 Assigned to|jsc   |cn





--- Additional comments from [EMAIL PROTECTED] Mon Oct 30 07:50:18 -0800 
2006 ---
change owner for verifying

jsc - cn: check by simply creating and compile new idl file containing  
interface XTest {
   string helloWorld();
};

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-10-23 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User jsc changed the following:

What|Old value |New value

  Issue type|ENHANCEMENT   |DEFECT





--- Additional comments from [EMAIL PROTECTED] Mon Oct 23 01:01:45 -0700 
2006 ---
.

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-10-23 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User jsc changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Mon Oct 23 07:43:43 -0700 
2006 ---
changed files:
idlc/inc/idlc/astdeclaration.hxx
idlc/source/idlc.cxx

fix:
predefine com::sun::star::uno::XInterface when the compler gets initialized

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-10-11 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727


User jsc changed the following:

What|Old value |New value

  Status|NEW   |STARTED

Target milestone|---   |OOo 2.1





--- Additional comments from [EMAIL PROTECTED] Wed Oct 11 00:36:57 -0700 
2006 ---
accepted

-
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]



[api-issues] [Issue 69727] [RFE] idlc: implicitly inc lude XInterface

2006-09-21 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69727
 Issue #|69727
 Summary|[RFE] idlc: implicitly include XInterface
   Component|api
 Version|680m182
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P4
Subcomponent|documentation
 Assigned to|jsc
 Reported by|fs





--- Additional comments from [EMAIL PROTECTED] Thu Sep 21 05:21:17 -0700 
2006 ---
Every time I design a new UNO interface, which does extend another interface,
and does not include any other IDL files, I end up with the following error from
idlc, the IDL compiler:

file:: error in lookup of symbol, expected interface is not defined and no
forward exists: '::com::sun::star::uno::XInterface' in 'interface'

That is, I forgot to include XInterface.idl. The error message here is
especially inconsistent, since I did not even *use* XInterface: My declaration
looks as follows:

module foo {
  interface XBar
  {
[attribute] string FooBar;
  };
};

That is, idlc *automatically* assumes that XBar is derived from XInterface.
Well, that's certainly correct, but then please also *automatically* assume that
XInterface.idl has been included.

-
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]