all repos — fluxbox @ 80908ebff190f787dcd96b81eefb4a8602c0b9e9

custom fork of the fluxbox windowmanager

added verbose option to enable verbose theme warnings
fluxgen fluxgen
commit

80908ebff190f787dcd96b81eefb4a8602c0b9e9

parent

ec235918df48427817521d6df9fde4cbe56c82d7

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M src/main.ccsrc/main.cc

@@ -20,12 +20,13 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: main.cc,v 1.22 2003/07/25 10:03:55 rathnor Exp $ +// $Id: main.cc,v 1.23 2003/08/28 23:18:37 fluxgen Exp $ #include "fluxbox.hh" #include "I18n.hh" #include "version.h" #include "defaults.hh" +#include "FbTk/Theme.hh" #ifdef HAVE_CONFIG_H #include "config.h"

@@ -201,6 +202,8 @@ exit(0);

} else if (strcmp(argv[i], "-info") == 0 || strcmp(argv[i], "-i") == 0) { showInfo(cout); exit(0); + } else if (strcmp(argv[i], "-verbose") == 0) { + FbTk::ThemeManager::instance().setVerbose(true); } }