mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-10 23:28:34 +02:00
some never read compil warning fixes
This commit is contained in:
@@ -47,9 +47,7 @@ CHintBoxExt::CHintBoxExt(const neutrino_locale_t Caption, const char * const Tex
|
||||
{
|
||||
m_message = strdup(Text);
|
||||
|
||||
char *begin = m_message;
|
||||
|
||||
begin = strtok(m_message, "\n");
|
||||
char *begin = strtok(m_message, "\n");
|
||||
while (begin != NULL)
|
||||
{
|
||||
std::vector<Drawable*> oneLine;
|
||||
@@ -67,9 +65,7 @@ CHintBoxExt::CHintBoxExt(const std::string &CaptionString, const char * const Te
|
||||
{
|
||||
m_message = strdup(Text);
|
||||
|
||||
char *begin = m_message;
|
||||
|
||||
begin = strtok(m_message, "\n");
|
||||
char *begin = strtok(m_message, "\n");
|
||||
while (begin != NULL)
|
||||
{
|
||||
std::vector<Drawable*> oneLine;
|
||||
|
Reference in New Issue
Block a user