diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-09 23:44:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-09 23:44:12 +0300 |
commit | 7455b856a59be26725f9bd1285f256dbddea5335 (patch) | |
tree | 93cb129b11cbb2cf10ca21d286e93c87ac354444 /src/gui | |
parent | 2baeff01037773180803cd2c7cb65a6afef6159f (diff) | |
download | plus-7455b856a59be26725f9bd1285f256dbddea5335.tar.gz plus-7455b856a59be26725f9bd1285f256dbddea5335.tar.bz2 plus-7455b856a59be26725f9bd1285f256dbddea5335.tar.xz plus-7455b856a59be26725f9bd1285f256dbddea5335.zip |
Fix code style.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_perfomance.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/gui/setup_perfomance.cpp b/src/gui/setup_perfomance.cpp index 0d5458cc4..eaadc7c3a 100644 --- a/src/gui/setup_perfomance.cpp +++ b/src/gui/setup_perfomance.cpp @@ -52,7 +52,8 @@ Setup_Perfomance::Setup_Perfomance() ContainerPlacer place = h.getPlacer(0, 0); place(0, 0, mScroll, 10, 10); - new SetupItemLabel(_("Better perfomance (enable for better perfomance)"), "", this); + new SetupItemLabel(_("Better perfomance (enable for better perfomance)"), + "", this); new SetupItemCheckBox(_("Auto adjust perfomance"), "", "adjustPerfomance", this, "adjustPerfomanceEvent"); @@ -69,16 +70,18 @@ Setup_Perfomance::Setup_Perfomance() new SetupItemCheckBox(_("Enable map reduce (Software)"), "", "enableMapReduce", this, "enableMapReduceEvent"); - new SetupItemLabel(_("Better quality (disable for better perfomance)"), "", this); + new SetupItemLabel(_("Better quality (disable for better perfomance)"), + "", this); - new SetupItemCheckBox(_("Enable alpha channel fix (Software, can be very slow)"), - "Can slow down drawing", "enableAlphaFix", + new SetupItemCheckBox(_("Enable alpha channel fix (Software, can " + "be very slow)"), "Can slow down drawing", "enableAlphaFix", this, "enableAlphaFixEvent"); new SetupItemCheckBox(_("Enable reorder sprites."), "", "enableReorderSprites", this, "enableReorderSpritesEvent"); - new SetupItemLabel(_("Small memory (enable for lower memory usage)"), "", this); + new SetupItemLabel(_("Small memory (enable for lower memory usage)"), + "", this); new SetupItemCheckBox(_("Disable advanced beings caching (Software)"), "", "disableAdvBeingCaching", this, "disableAdvBeingCachingEvent"); |