aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Screen.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 4dec665..547ba57 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.cc,v 1.264 2004/01/21 14:14:18 fluxgen Exp $ 25// $Id: Screen.cc,v 1.265 2004/02/03 12:55:35 rathnor Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -163,7 +163,7 @@ template <>
163void FbTk::Resource<BScreen::PlacementPolicy>::setFromString(const char *str) { 163void FbTk::Resource<BScreen::PlacementPolicy>::setFromString(const char *str) {
164 if (strcasecmp("RowSmartPlacement", str) == 0) 164 if (strcasecmp("RowSmartPlacement", str) == 0)
165 *(*this) = BScreen::ROWSMARTPLACEMENT; 165 *(*this) = BScreen::ROWSMARTPLACEMENT;
166 else if (strcasecmp("", str) == 0) 166 else if (strcasecmp("ColSmartPlacement", str) == 0)
167 *(*this) = BScreen::COLSMARTPLACEMENT; 167 *(*this) = BScreen::COLSMARTPLACEMENT;
168 else if (strcasecmp("UnderMousePlacement", str) == 0) 168 else if (strcasecmp("UnderMousePlacement", str) == 0)
169 *(*this) = BScreen::UNDERMOUSEPLACEMENT; 169 *(*this) = BScreen::UNDERMOUSEPLACEMENT;