Skip to content

Commit

Permalink
Fix doccomment error
Browse files Browse the repository at this point in the history
Remove lame doccomments.
  • Loading branch information
GregoryLundberg committed Apr 28, 2018
1 parent 56d3ac8 commit c3fb945
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/gui/widgets/text_box_base.cpp
Expand Up @@ -443,10 +443,6 @@ void text_box_base::handle_commit(bool& handled, const utf8::string& unicode)

/**
* SDL_TEXTEDITING handler. See example at https://wiki.libsdl.org/Tutorials/TextInput
* @param handled
* @param unicode event.text.text, in SDL_TEXTEDITING is't the "composition" piece.
* @param start event.edit.start
* @param length event.edit.length
*/
void text_box_base::handle_editing(bool& handled, const utf8::string& unicode, int32_t start, int32_t len)
{
Expand Down

2 comments on commit c3fb945

@CelticMinstrel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I guess they were indeed lame, but I would've tried to improve them rather than removing them... ah well, whatever.

@GregoryLundberg
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Improving them presumes an understanding of the function. The original programmer didn't care to write proper comments and I don't want to spend hours trying to figure it out.

Please sign in to comment.