diff options
author | Marius Kintel <marius@kintel.net> | 2010-11-01 03:29:55 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-11-01 03:29:55 (GMT) |
commit | e994adddb17262f13b1c755567b20cd197c39252 (patch) | |
tree | 170a9b51f39c5ab225a70c93c1ed84c7a14dadb6 /src/mainwin.cc | |
parent | 45a3d59bb7d06b2d0245e2b7f45b03cc6021d5b9 (diff) |
cosmetics
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index f812ede..be1a8ed 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -762,7 +762,7 @@ void MainWindow::compileCSG(bool procevents) root_chain->import(root_norm_term); if (root_chain->polysets.size() > 1000) { - PRINTF("WARNING: Normalized tree has %d elements!", root_chain->polysets.size()); + PRINTF("WARNING: Normalized tree has %u elements!", root_chain->polysets.size()); PRINTF("WARNING: OpenCSG rendering has been disabled."); } else { enableOpenCSG = true; @@ -770,7 +770,7 @@ void MainWindow::compileCSG(bool procevents) if (highlight_terms.size() > 0) { - PRINTF("Compiling highlights (%d CSG Trees)...", highlight_terms.size()); + PRINTF("Compiling highlights (%u CSG Trees)...", highlight_terms.size()); if (procevents) QApplication::processEvents(); @@ -789,7 +789,7 @@ void MainWindow::compileCSG(bool procevents) if (background_terms.size() > 0) { - PRINTF("Compiling background (%d CSG Trees)...", background_terms.size()); + PRINTF("Compiling background (%u CSG Trees)...", background_terms.size()); if (procevents) QApplication::processEvents(); |