Vincent van Ravesteijn wrote: > Show me an example where it would be necessary and where the 80 char limit > is a pita ?
another example which just jumped at me. its not strictly pita but i find the two lines better. you don't? pavel
diff --git a/src/frontends/qt4/GuiToolbar.cpp b/src/frontends/qt4/GuiToolbar.cpp index 7915a4e..b129e66 100644 --- a/src/frontends/qt4/GuiToolbar.cpp +++ b/src/frontends/qt4/GuiToolbar.cpp @@ -335,10 +335,8 @@ void GuiToolbar::restoreSession() settings.value(sessionKey() + "/visibility", error_val).toInt(); if (visibility == error_val || visibility == 0) { // This should not happen, but in case we use the defaults - LYXERR0("Session settings could not be found!. " - "Defaults are used instead"); - visibility = - guiApp->toolbars().defaultVisibility(fromqstr(objectName())); + LYXERR0("Session settings could not be found! Defaults are used instead"); + visibility = guiApp->toolbars().defaultVisibility(fromqstr(objectName())); } setVisibility(visibility); }