aboutsummaryrefslogtreecommitdiff
path: root/src/TooltipWindow.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-03 20:45:14 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-03 20:45:14 (GMT)
commit90f2fcf031554577ce811e7f7151f2a78ea7a265 (patch)
tree3705ddd022d4b6c8e859e17a8858cf602617b8ec /src/TooltipWindow.cc
parent3c85ace912824df11ccb22666085e9ba84cd00be (diff)
downloadfluxbox-90f2fcf031554577ce811e7f7151f2a78ea7a265.zip
fluxbox-90f2fcf031554577ce811e7f7151f2a78ea7a265.tar.bz2
Minor API change for OSDWindow
OSDWindow::resize(const FbTk::BiDiString&) shadowed FbWindow::resize(x, y). To fix this I renamed the function to OSDWindow::resizeForText() to make the intention clear.
Diffstat (limited to 'src/TooltipWindow.cc')
-rw-r--r--src/TooltipWindow.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TooltipWindow.cc b/src/TooltipWindow.cc
index 77a6e1e..06ddf63 100644
--- a/src/TooltipWindow.cc
+++ b/src/TooltipWindow.cc
@@ -53,7 +53,7 @@ void TooltipWindow::raiseTooltip() {
53 if (m_lastText.logical().empty()) 53 if (m_lastText.logical().empty())
54 return; 54 return;
55 55
56 resize(m_lastText); 56 resizeForText(m_lastText);
57 reconfigTheme(); 57 reconfigTheme();
58 58
59 FbTk::Font& font = theme()->iconbarTheme().text().font(); 59 FbTk::Font& font = theme()->iconbarTheme().text().font();