Bug #1183
- Fixed bug #1183, correcting error message typos (thanks to Jakub Wilk).
This commit is contained in:
2
AUTHORS
2
AUTHORS
@@ -167,3 +167,5 @@ suggestions:
|
|||||||
trHD
|
trHD
|
||||||
Benjamin Weber
|
Benjamin Weber
|
||||||
alparo
|
alparo
|
||||||
|
Jakub Wilk
|
||||||
|
|
||||||
|
|||||||
@@ -81,6 +81,7 @@ Bugs
|
|||||||
+ Fixed bug #1154, which now allows priorities to be specified in any case.
|
+ Fixed bug #1154, which now allows priorities to be specified in any case.
|
||||||
+ Fixed bug #1178, which included binary libraries in the released source
|
+ Fixed bug #1178, which included binary libraries in the released source
|
||||||
package (thanks to Jakub Wilk).
|
package (thanks to Jakub Wilk).
|
||||||
|
+ Fixed bug #1183, correcting error message typos (thanks to Jakub Wilk).
|
||||||
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
||||||
Leads to better output of, for example, 'task show', where comma-separated
|
Leads to better output of, for example, 'task show', where comma-separated
|
||||||
lists are common.
|
lists are common.
|
||||||
|
|||||||
@@ -301,28 +301,28 @@ bool Column::validate (std::string& input)
|
|||||||
// No L10N.
|
// No L10N.
|
||||||
void Column::measure (const std::string&, unsigned int&, unsigned int&)
|
void Column::measure (const std::string&, unsigned int&, unsigned int&)
|
||||||
{
|
{
|
||||||
throw std::string ("Virtual method Column::measure not overriden.");
|
throw std::string ("Virtual method Column::measure not overridden.");
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// No L10N.
|
// No L10N.
|
||||||
void Column::measure (Task&, unsigned int&, unsigned int&)
|
void Column::measure (Task&, unsigned int&, unsigned int&)
|
||||||
{
|
{
|
||||||
throw std::string ("Virtual method Column::measure not overriden.");
|
throw std::string ("Virtual method Column::measure not overridden.");
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// No L10N.
|
// No L10N.
|
||||||
void Column::render (std::vector <std::string>&, const std::string&, int, Color&)
|
void Column::render (std::vector <std::string>&, const std::string&, int, Color&)
|
||||||
{
|
{
|
||||||
throw std::string ("Virtual method Column::render not overriden.");
|
throw std::string ("Virtual method Column::render not overridden.");
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// No L10N.
|
// No L10N.
|
||||||
void Column::render (std::vector <std::string>&, Task&, int, Color&)
|
void Column::render (std::vector <std::string>&, Task&, int, Color&)
|
||||||
{
|
{
|
||||||
throw std::string ("Virtual method Column::render not overriden.");
|
throw std::string ("Virtual method Column::render not overridden.");
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user