To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86913


User jl changed the following:

                What    |Old value                 |New value
================================================================================
                  Status|NEW                       |RESOLVED
--------------------------------------------------------------------------------
              Resolution|                          |FIXED
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Thu Mar 13 14:40:47 +0000 
2008 -------
I added these functions:

    sal_Int32       getItemCount() const;
    //The index starts with 1. When nothing is selected, which is 
    //the case when getItemCount returns '0', then this function 
    //also returns 0
    sal_Int32       getSelIndex() const;

    //Returs the name of item, typically the display name of the extension.
    //The index starts with 1.
    //Throws an com::sun::star::lang::IllegalArgumentException, when the
position is invalid.
    OUString        getItemName(sal_Int32 pos) const;
    //Returns the version string. The index starts with 1.
    //Throws an com::sun::star::lang::IllegalArgumentException, when the
position is invalid.
    OUString        getItemVersion(sal_Int32 pos) const;
    //Returns the description string. The index starts with 1.
    //Throws an com::sun::star::lang::IllegalArgumentException, when the
position is invalid.
    OUString        getItemDescription(sal_Int32 pos) const;
    OUString        getSelName() const;
    OUString        getSelVersion() const;
    OUString        getSelDescription() const;
    //Index starts with 1
    //Throws an com::sun::star::lang::IllegalArgumentException, when the
position is invalid.
    void            select(sal_Int32 pos);
    //sName is the value which one will get with getSelName afterwards.
    //It typically is the display name of the extension.
    //Throws an com::sun::star::lang::IllegalArgumentException, when the
position is invalid.
    //There can be several extensions with the same name installed, because:
    // 1. the name is not unique
    // 2. one extension can be installed as user and shared extension.
    void            select(OUString const & sName);


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

Reply via email to