~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to kplato/libs/kernel/kptaccount.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
    void take(Account *account);
90
90
    bool isChildOf( const Account *account ) const;
91
91
    void insertChildren();
 
92
    int indexOf( Account *account ) const { return m_accountList.indexOf( account ); }
92
93
    
93
94
    bool load(KoXmlElement &element, Project &project);
94
95
    void save(QDomElement &element) const;
235
236
    const AccountList &accountList() const { return m_accountList; }
236
237
    int accountCount() const { return m_accountList.count(); }
237
238
    Account *accountAt( int index ) const { return m_accountList.value( index ); }
238
 
    
 
239
    int indexOf( Account *account ) const { return m_accountList.indexOf( account ); }
 
240
 
239
241
    Account *findRunningAccount(const Resource &resource) const;
240
242
 
241
243
    Account *findRunningAccount(const Node &node) const;