indentation and removed some debug code

This commit is contained in:
fluxgen 2002-01-21 01:48:47 +00:00
parent 5957d88157
commit 3d20c78714

View file

@ -19,7 +19,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//$Id: Keys.cc,v 1.8 2002/01/10 14:24:09 fluxgen Exp $
//$Id: Keys.cc,v 1.9 2002/01/21 01:48:47 fluxgen Exp $
#ifdef HAVE_CONFIG_H
# include "config.h"
@ -278,17 +278,6 @@ bool Keys::load(char *filename) {
if (!mergeTree(current_key))
cerr<<"Keys: Failed to merge keytree!"<<endl;
#ifdef DEBUG
if (m_actionlist[i].action == Keys::EXECUTE) {
cerr<<"line:"<<line<<endl;
cerr<<"buffer:"<<const_cast<char *>(StringUtil::strcasestr(linebuffer.get(),
getActionStr(Keys::EXECUTE)) + strlen(getActionStr(Keys::EXECUTE)))<<endl;
cerr<<"command:"<<last_key->execcommand<<endl;
}
#endif
//clear keypointers now that we have them in m_keylist
delete current_key;
current_key = 0;
@ -309,9 +298,6 @@ bool Keys::load(char *filename) {
}
}
#ifdef DEBUG
showTree(); //who keybinding tree
#endif
return true;
}
@ -321,10 +307,6 @@ bool Keys::load(char *filename) {
//----------------------------------------
void Keys::grabKey(unsigned int key, unsigned int mod) {
#ifdef DEBUG
cerr<<__FILE__<<"("<<__LINE__<<"): keycode "<<key<<" mod "<<hex<<mod<<dec<<endl;
#endif
for (int screen=0; screen<ScreenCount(m_display); screen++) {
Window root = RootWindow(m_display, screen);