mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 23:36:16 +00:00
Code cleanup
Fixes a couple of whitespace issues. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
d9067582a9
commit
2819ee6510
1 changed files with 4 additions and 4 deletions
|
@ -434,8 +434,8 @@ void MainTab::acceptChanges()
|
|||
|
||||
if (cylindersModel->changed) {
|
||||
mark_divelist_changed(TRUE);
|
||||
Q_FOREACH(dive *d, notesBackup.keys()){
|
||||
for(int i = 0; i < MAX_CYLINDERS; i++){
|
||||
Q_FOREACH (dive *d, notesBackup.keys()) {
|
||||
for (int i = 0; i < MAX_CYLINDERS; i++) {
|
||||
d->cylinder[i] = multiEditEquipmentPlaceholder.cylinder[i];
|
||||
}
|
||||
}
|
||||
|
@ -443,8 +443,8 @@ void MainTab::acceptChanges()
|
|||
|
||||
if (weightModel->changed) {
|
||||
mark_divelist_changed(TRUE);
|
||||
Q_FOREACH(dive *d, notesBackup.keys()){
|
||||
for(int i = 0; i < MAX_CYLINDERS; i++){
|
||||
Q_FOREACH (dive *d, notesBackup.keys()) {
|
||||
for (int i = 0; i < MAX_CYLINDERS; i++) {
|
||||
d->cylinder[i] = multiEditEquipmentPlaceholder.cylinder[i];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue