summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/pageinformationdialog.cpp
authordrw <drw>2003-01-01 20:24:31 (UTC)
committer drw <drw>2003-01-01 20:24:31 (UTC)
commit0d5a0d775acbee43ac417e63c64126a4efc50d64 (patch) (side-by-side diff)
tree0457679736ba2e72539b7538dde63c93a942f797 /noncore/graphics/drawpad/pageinformationdialog.cpp
parent2736ce30d565270495050cec2831d3f31b5c90a0 (diff)
downloadopie-0d5a0d775acbee43ac417e63c64126a4efc50d64.zip
opie-0d5a0d775acbee43ac417e63c64126a4efc50d64.tar.gz
opie-0d5a0d775acbee43ac417e63c64126a4efc50d64.tar.bz2
Added QWhatsThis and some code optimizations to reduce executable size.
Diffstat (limited to 'noncore/graphics/drawpad/pageinformationdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/pageinformationdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/graphics/drawpad/pageinformationdialog.cpp b/noncore/graphics/drawpad/pageinformationdialog.cpp
index cb14d73..d769668 100644
--- a/noncore/graphics/drawpad/pageinformationdialog.cpp
+++ b/noncore/graphics/drawpad/pageinformationdialog.cpp
@@ -94,24 +94,24 @@ QString PageInformationDialog::dateTimeString(QDateTime dateTime)
for (int i = 0; i < 3; i++) {
switch((shortOrder >> (i * 3)) & 0x0007) {
case 0x0001:
- result += QString().sprintf("%02d", dateTime.date().day());
+ result.append( QString().sprintf("%02d", dateTime.date().day()) );
break;
case 0x0002:
- result += QString().sprintf("%02d", dateTime.date().month());
+ result.append( QString().sprintf("%02d", dateTime.date().month()) );
break;
case 0x0004:
- result += QString().sprintf("%04d", dateTime.date().year());
+ result.append( QString().sprintf("%04d", dateTime.date().year()) );
break;
default:
break;
}
if (i < 2) {
- result += separator;
+ result.append( separator );
}
}
- result += QString().sprintf(" %02d:%02d", dateTime.time().hour(), dateTime.time().minute());
+ result.append( QString().sprintf(" %02d:%02d", dateTime.time().hour(), dateTime.time().minute()) );
return result;
}