Added wall posts deletion if allowed

This commit is contained in:
2019-01-03 13:40:11 -06:00
parent e1f25475b1
commit 86c9ac93d5
3 changed files with 25 additions and 1 deletions

View File

@@ -36,4 +36,7 @@ def delete_audio_album():
return wx.MessageDialog(None, _("Do you really want to delete this Album? this will be deleted from VK too."), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()
def updated_status():
return wx.MessageDialog(None, _("Your status message has been successfully updated."), _("Success")).ShowModal()
return wx.MessageDialog(None, _("Your status message has been successfully updated."), _("Success")).ShowModal()
def remove_post():
return wx.MessageDialog(None, _("Do you really want to delete this post?"), _("Attention"), style=wx.ICON_QUESTION|wx.YES_NO).ShowModal()