(self, event)
| 1003 | subprocess.Popen(["bash", Variables.playonlinux_env + "/bash/make_shortcut", game_exec]) |
| 1004 | |
| 1005 | def UninstallGame(self, event): |
| 1006 | game_exec = self.GetSelectedProgram() |
| 1007 | if game_exec != "": |
| 1008 | subprocess.Popen(["bash", Variables.playonlinux_env + "/bash/uninstall", game_exec]) |
| 1009 | else: |
| 1010 | wx.MessageBox(_("Please select a program."), os.environ["APPLICATION_TITLE"]) |
| 1011 | |
| 1012 | def PolVaultSaveGame(self, event): |
| 1013 | game_exec = self.GetSelectedProgram() |
nothing calls this directly
no test coverage detected