~txwikinger/guidance/userconfig-kde4

« back to all changes in this revision

Viewing changes to userconfig.py

  • Committer: Ralph Janke
  • Date: 2008-10-18 02:08:18 UTC
  • Revision ID: raj-intrepid@oulp-intrepid-20081018020818-v8wei77l623ba4op
Fixed missing group update when new/delete user creates/deletes group and recreated UserDeleteDialog with *.ui file

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
            QWidget.__init__(self)
63
63
            if os.path.exists('ui/maindialog.ui'): 
64
64
                self.md = uic.loadUi('ui/maindialog.ui', self)
65
 
        #FIXME SRSLY! Need to know where the ui crap'll be installed and check for it there too.
 
65
        #FIXME: SRSLY! Need to know where the ui crap'll be installed and check for it there too.
66
66
        else:
67
67
            KCModule.__init__(self,parent,name)
68
68
            self.setButtons(0)
249
249
            self.updatingGUI = True
250
250
            self.__updateUserList()
251
251
            self.__selectUser(newuid)
 
252
            self.__updateGroupList()
252
253
            self.updatingGUI = False
253
254
 
254
255
    #######################################################################
257
258
            self.updatingGUI = True
258
259
            self.selecteduserid = None
259
260
            self.__updateUserList()
 
261
            self.__updateGroupList()
260
262
            self.updatingGUI = False
261
263
 
262
264
    #######################################################################