~ubuntu-branches/ubuntu/jaunty/kde4libs/jaunty

« back to all changes in this revision

Viewing changes to khtml/html/html_miscimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Wenning, Jonathan Thomas, Andreas Wenning
  • Date: 2009-04-01 05:55:52 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20090401055552-uel5di5f3xiftax3
Tags: 4:4.2.2-0ubuntu1
[ Jonathan Thomas ]
* New upstream release (LP: #344709, #348823):
  - Bump upstreamversion and runtimedeps in debian/rules
  - Remove kubuntu_65_kcmdlineargs_decoding_svn934640.diff, applied upstream

[ Andreas Wenning ]
* Remove patch kubuntu_69_do_not_show_plasma_popups_over_screensaver.diff,
  applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
331
331
    QList<HTMLGenericFormElementImpl*>& l = static_cast<HTMLFormElementImpl*>( m_refNode )->formElements;
332
332
    for (unsigned i = strt; i < (unsigned)l.count(); i++)
333
333
    {
334
 
        if (l.at( i )->isEnumeratable())
 
334
        if (l.at( i )->isEnumerable())
335
335
        {
336
336
            if (dist == 0)
337
337
            {
353
353
    unsigned length = 0;
354
354
    QList<HTMLGenericFormElementImpl*> l = static_cast<HTMLFormElementImpl*>( m_refNode )->formElements;
355
355
    for ( unsigned i = 0; i < (unsigned)l.count(); i++ )
356
 
        if ( l.at( i )->isEnumeratable() )
 
356
        if ( l.at( i )->isEnumerable() )
357
357
            ++length;
358
358
    return length;
359
359
}
374
374
    for ( ; currentNamePos < (unsigned)l.count(); ++currentNamePos )
375
375
    {
376
376
        HTMLGenericFormElementImpl* el = l.at(currentNamePos);
377
 
        if (el->isEnumeratable() &&
 
377
        if (el->isEnumerable() &&
378
378
             ((el->getAttribute(ATTR_ID)   == name) ||
379
379
              (el->getAttribute(ATTR_NAME) == name)))
380
380
        {