Browse Source

No trailing whitespace in magnum-info utility.

pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
4b2551bbb5
  1. 4
      src/Platform/magnum-info.cpp

4
src/Platform/magnum-info.cpp

@ -95,9 +95,9 @@ MagnumInfo::MagnumInfo(int& argc, char** argv): WindowlessGlxApplication(argc, a
if(c->isExtensionSupported(extension))
d << "SUPPORTED";
else if(c->isVersionSupported(extension.requiredVersion()))
d << " - ";
d << " -";
else
d << " --- ";
d << " ---";
}
Debug() << "";

Loading…
Cancel
Save