Add tooltips to user config preferences. clean up combo ordering.
[ardour.git] / libs / audiographer / src / debug_utils.cc
index 3f58b33a272b1ea61ecdf4e76c0911c4333322c2..4113ad784176ea1ce8bc63ddbd048913b4cdd33f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Paul Davis 
+    Copyright (C) 2012 Paul Davis
     Author: Sakari Bergen
 
     This program is free software; you can redistribute it and/or modify
@@ -30,7 +30,7 @@ std::string
 DebugUtils::process_context_flag_name (FlagField::Flag flag)
 {
        std::ostringstream ret;
-       
+
        switch (flag) {
                case ProcessContext<>::EndOfInput:
                        ret << "EndOfInput";
@@ -39,7 +39,7 @@ DebugUtils::process_context_flag_name (FlagField::Flag flag)
                        ret << flag;
                        break;
        }
-       
+
        return ret.str();
 }