Skip to content
Snippets Groups Projects
Commit 1e80f8c9 authored by nkour's avatar nkour
Browse files

fix docstrings

parent 29c9db5d
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,8 @@
GTKGUI_GLADE = 'gtkgui.glade'
class ConversationTextview(gtk.TextView):
'''Class for chat/groupchat windows'''
'''Class for the conversation textview (where user reads already said messages)
for chat/groupchat windows'''
def __init__(self, account):
gtk.TextView.__init__(self)
......
......@@ -20,6 +20,8 @@
import gobject
class MessageTextView(gtk.TextView):
'''Class for the message textview (where user writes new messages)
for chat/groupchat windows'''
__gsignals__ = dict(
mykeypress = (gobject.SIGNAL_RUN_LAST | gobject.SIGNAL_ACTION,
None, # return value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment