renamed i18n to I18n

This commit is contained in:
fluxgen 2003-06-13 05:04:14 +00:00
parent 536090bbe5
commit 13a00b7d34
4 changed files with 10 additions and 8 deletions

View file

@ -19,11 +19,11 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
// $Id: IconBar.cc,v 1.36 2003/05/15 23:30:06 fluxgen Exp $ // $Id: IconBar.cc,v 1.37 2003/06/13 05:02:09 fluxgen Exp $
#include "IconBar.hh" #include "IconBar.hh"
#include "i18n.hh" #include "I18n.hh"
#include "Screen.hh" #include "Screen.hh"
#include "Window.hh" #include "Window.hh"
#include "ImageControl.hh" #include "ImageControl.hh"

View file

@ -61,7 +61,7 @@ fluxbox_SOURCES = AtomHandler.hh ArrowButton.hh ArrowButton.cc \
FbWinFrameTheme.hh FbWinFrameTheme.cc \ FbWinFrameTheme.hh FbWinFrameTheme.cc \
fluxbox.cc fluxbox.hh ${gnome_SOURCE} \ fluxbox.cc fluxbox.hh ${gnome_SOURCE} \
IconBar.cc IconBar.hh \ IconBar.cc IconBar.hh \
i18n.cc i18n.hh \ I18n.cc I18n.hh \
Keys.cc Keys.hh main.cc \ Keys.cc Keys.hh main.cc \
Netizen.cc Netizen.hh \ Netizen.cc Netizen.hh \
RootTheme.hh RootTheme.cc \ RootTheme.hh RootTheme.cc \

View file

@ -22,7 +22,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
// $Id: Slit.cc,v 1.59 2003/06/05 11:30:06 fluxgen Exp $ // $Id: Slit.cc,v 1.60 2003/06/13 05:03:43 fluxgen Exp $
#include "Slit.hh" #include "Slit.hh"
@ -35,7 +35,7 @@
#include "config.h" #include "config.h"
#endif // HAVE_CONFIG_H #endif // HAVE_CONFIG_H
#include "i18n.hh" #include "I18n.hh"
#include "Screen.hh" #include "Screen.hh"
#include "ImageControl.hh" #include "ImageControl.hh"
#include "RefCount.hh" #include "RefCount.hh"

View file

@ -22,11 +22,11 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
// $Id: Toolbar.cc,v 1.89 2003/06/11 14:51:22 fluxgen Exp $ // $Id: Toolbar.cc,v 1.90 2003/06/13 05:04:14 fluxgen Exp $
#include "Toolbar.hh" #include "Toolbar.hh"
#include "i18n.hh" #include "I18n.hh"
#include "fluxbox.hh" #include "fluxbox.hh"
#include "Screen.hh" #include "Screen.hh"
#include "Window.hh" #include "Window.hh"
@ -389,7 +389,9 @@ void Toolbar::enableIconBar() {
if (m_iconbar.get() != 0) if (m_iconbar.get() != 0)
return; // already on return; // already on
m_iconbar.reset(new IconBar(screen(), frame.window_label.window(), m_theme.font())); m_iconbar.reset(new IconBar(screen(),
frame.window_label.window(),
m_theme.font()));
} }
void Toolbar::disableIconBar() { void Toolbar::disableIconBar() {