summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/LogConfigWindow.cpp
AgeCommit message (Collapse)Author
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-05-08DolphinWX: Remove unnecessary includesLioncash
2015-03-15[windows] Remove ConsoleListener, which was not actually used.Shawn Hoffman
Replace it with the DebuggerLogListener.
2014-11-07DolphinWX: Remove unnecessary forward declarationsLioncash
2014-10-21Add missing includes where headers depend on other headers having been ↵comex
included first. This is good hygiene, and also happens to be required to build Dolphin using Clang modules. (Under this setup, each header file becomes a module, and each #include is automatically translated to a module import. Recursive includes still leak through (by default), but modules are compiled independently, and can't depend on defines or types having previously been set up. The main reason to retrofit it onto Dolphin is compilation performance - no more textual includes whatsoever, rather than putting a few blessed common headers into a PCH. Unfortunately, I found multiple Clang bugs while trying to build Dolphin this way, so it's not ready yet, but I can start with this prerequisite.)
2014-08-26Disable all logs by default.Rachel Bryk
2014-06-25Centralize the logging code into its own folder in Common.Lioncash
2014-06-16Use only section-based ini reading.Lioncash
2014-05-17Get rid of old wx event type usages. Use recommended replacementsLioncash
2014-03-09clang-modernize -use-nullptrTillmann Karras
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
2014-03-05Remove some superfluous arguments from some wx control creationsLioncash
wx has these as default parameters.
2014-02-23Revert "Merge pull request #83 from lioncash/remove-console"Pierre Bourdon
This breaks Linux stdout logging. This reverts commit 7ac5b1f2f805b2bc553492606cf71b6609fa0ae7, reversing changes made to 9bc14012fccf92f38b7d270ec82f7dac522986c5. Revert "Merge pull request #77 from lioncash/remove-console" This reverts commit 9bc14012fccf92f38b7d270ec82f7dac522986c5, reversing changes made to b18a33377d7229a66226a524186d24c57f1d56aa. Conflicts: Source/Core/Common/LogManager.cpp Source/Core/DolphinWX/Frame.cpp Source/Core/DolphinWX/FrameAui.cpp Source/Core/DolphinWX/LogConfigWindow.cpp Source/Core/DolphinWX/LogWindow.cpp
2014-02-23Make DolphinWX/ mostly IWYU clean.Pierre Bourdon
2014-02-18Convert all includes to relative paths.Lioncash
2014-02-16Remove the embedded Console from the possible logging options.Lioncash
Note I do not mean the Logging window, but the console window. It's literally rarely, if at all used, and offers less advantages over the built-in logging window (ie. it breaks on different locales: http://i.imgur.com/Cs92tQE.png) This commit should remove all of the console logging.
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre