mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-12 11:45:55 +01:00
Fix some double newlines
Just a couple that woud now print double (or several more) newlines. Signed-off-by: Tamas TEVESZ <ice@extreme.hu>
This commit is contained in:
committed by
Carlos R. Mafra
parent
8594c39a0b
commit
94a0c7b42f
@@ -3031,7 +3031,7 @@ static void customPaletteMenuRename(W_ColorPanel * panel)
|
||||
}
|
||||
|
||||
if (rename(fromPath, toPath) != 0)
|
||||
werror(_("Couldn't rename palette %s to %s\n"), fromName, toName);
|
||||
werror(_("Couldn't rename palette %s to %s"), fromName, toName);
|
||||
else {
|
||||
WMRemovePopUpButtonItem(panel->customPaletteHistoryBtn, item);
|
||||
WMInsertPopUpButtonItem(panel->customPaletteHistoryBtn, item, toName);
|
||||
@@ -3078,7 +3078,7 @@ static void customPaletteMenuRemove(W_ColorPanel * panel)
|
||||
WMRemovePopUpButtonItem(panel->customPaletteHistoryBtn, item);
|
||||
|
||||
} else {
|
||||
werror(_("Couldn't remove palette %s\n"), tmp);
|
||||
werror(_("Couldn't remove palette %s"), tmp);
|
||||
}
|
||||
|
||||
wfree(tmp);
|
||||
|
||||
Reference in New Issue
Block a user