~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to src/xdata_widget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
                        req = "*";
71
71
                if ( !_field.desc().isEmpty() ) {
72
72
                        if ( !req.isEmpty() )
73
 
                                req += " ";
 
73
                                req += ' ';
74
74
                        req += "(?)";
75
75
                }
76
76
                return req;
386
386
                QStringList::Iterator it = val.begin();
387
387
                for ( ; it != val.end(); ++it) {
388
388
                        if ( !text.isEmpty() )
389
 
                                text += "\n";
 
389
                                text += '\n';
390
390
                        text += *it;
391
391
                }
392
392
                edit->setText(text);