author | mickeyl <mickeyl> | 2004-06-22 10:36:46 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-06-22 10:36:46 (UTC) |
commit | 9c471976e750812f0af3b443964954d4b5a5ed20 (patch) (side-by-side diff) | |
tree | c049d0b1b419a4b76aaea02d063484b4e3f1fc4e | |
parent | 9cff98cb70d8e3a69cefe718bf02720134c10bca (diff) | |
download | opie-9c471976e750812f0af3b443964954d4b5a5ed20.zip opie-9c471976e750812f0af3b443964954d4b5a5ed20.tar.gz opie-9c471976e750812f0af3b443964954d4b5a5ed20.tar.bz2 |
use stderr as default odebug output destination as pointed out by Brad
-rw-r--r-- | libopie2/opiecore/oglobalsettings.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libopie2/opiecore/oglobalsettings.cpp b/libopie2/opiecore/oglobalsettings.cpp index f34c531..89c77d7 100644 --- a/libopie2/opiecore/oglobalsettings.cpp +++ b/libopie2/opiecore/oglobalsettings.cpp @@ -25,24 +25,25 @@ -. .:....=;==+<; You should have received a copy of the GNU -_. . . )=. = Library General Public License along with -- :-=` this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* OPIE */ #include <opie2/oglobalsettings.h> #include <opie2/oconfig.h> +#include <opie2/odebug.h> #include <opie2/oglobal.h> /* QT */ #include <qdir.h> /* UNIX */ #include <stdlib.h> using namespace Opie::Core; @@ -52,25 +53,25 @@ QString* OGlobalSettings::s_autostartPath = 0; QString* OGlobalSettings::s_trashPath = 0; QString* OGlobalSettings::s_documentPath = 0; QFont *OGlobalSettings::_generalFont = 0; QFont *OGlobalSettings::_fixedFont = 0; QFont *OGlobalSettings::_toolBarFont = 0; QFont *OGlobalSettings::_menuFont = 0; QFont *OGlobalSettings::_windowTitleFont = 0; QFont *OGlobalSettings::_taskbarFont = 0; QColor *OGlobalSettings::OpieGray = 0; QColor *OGlobalSettings::OpieHighlight = 0; QColor *OGlobalSettings::OpieAlternate = 0; - + OGlobalSettings::OMouseSettings *OGlobalSettings::s_mouseSettings = 0; //FIXME: Add manipulators to the accessors int OGlobalSettings::dndEventDelay() { OConfig *c = OGlobal::config(); OConfigGroupSaver cgs( c, "General" ); return c->readNumEntry("DndDelay", 2); } bool OGlobalSettings::singleClick() @@ -150,25 +151,25 @@ int OGlobalSettings::contextMenuKey () //OShortcut cut (cgs.config()->readEntry ("PopupMenuContext", "Menu")); //return cut.keyCodeQt(); return 0; // FIXME } OGlobalSettings::Debug OGlobalSettings::debugMode() { OConfig *c = OGlobal::config(); OConfigGroupSaver cgs( c, "General" ); - int debug = c->readNumEntry( "debugMode", -1 ); + int debug = c->readNumEntry( "debugMode", ODEBUG_STDERR ); if ( (debug < (int) DebugNone) || (debug > (int) DebugSocket) ) { debug = (int) DebugStdErr; // Default } return (Debug) debug; } QString OGlobalSettings::debugOutput() { OConfig *c = OGlobal::config(); OConfigGroupSaver cgs( c, "General" ); |