Issue 122994 - Netbeans Integration: #import instead of #include in new UNO IDL file
Summary: Netbeans Integration: #import instead of #include in new UNO IDL file
Status: UNCONFIRMED
Alias: None
Product: App Dev
Classification: Unclassified
Component: sdk (show other issues)
Version: 4.0.0
Hardware: All All
: P3 Normal
Target Milestone: ---
Assignee: AOO issues mailing list
QA Contact:
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-09 14:54 UTC by Ariel D. Moya Sequeira
Modified: 2013-08-28 02:19 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: 4.0.0
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Ariel D. Moya Sequeira 2013-08-09 14:54:40 UTC
When a new IDL file is created using the New File wizard, there is an #import directive in the resulting file. It must be #include, instead.

Issue shows up using plugin version 3.0.0.beta.nbm.
Comment 1 Carl Marcum 2013-08-28 02:19:42 UTC
Ariel, Can you give me the steps you took?
I'm using the last change I made to the plugin which compiles as:
org-openoffice-extensions-4.0.0.nbm which hasn't been available yet and a dev-snapshot of AOO 4.0 but as no updates to the code for the UNO IDL file have been made. When I create one my file looks like this:

/*
 * NewUnoIdlTypeTest.idl
 *
 * Created on 2013.08.27 - 22:06:10
 *
 */

#ifndef __com_NewUnoIdlTypeTest__
#define __com_NewUnoIdlTypeTest__

#include <com/sun/star/uno/XInterface.idl>

module com {
    interface NewUnoIdlTypeTest {

        long function0([in] long parameter0);
    };
};

#endif