Client/Layout: Fix focus issue (#1) with max layout.

This commit is contained in:
Martin Duquesnoy
2009-07-22 14:27:52 +02:00
parent ec834a4cbc
commit 33689fc5a0
5 changed files with 9 additions and 21 deletions

View File

@@ -18,7 +18,7 @@
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5B* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
@@ -199,21 +199,6 @@ get_mouse_pos(void)
return ret;
}
/** Transform one character to string
*\param ch The character that will be tranforming
*\return The string.
*/
char*
char_to_str(const char c)
{
static char s[2];
s[0] = c;
s[1] = '\0';
return s;
}
/** Execute a sh command
* \param cmd Command
*/