982 Public method to get a reference to the VCS object. |
982 Public method to get a reference to the VCS object. |
983 |
983 |
984 @return reference to the VCS object |
984 @return reference to the VCS object |
985 """ |
985 """ |
986 return self.vcs |
986 return self.vcs |
|
987 |
|
988 def isVcsControlled(self): |
|
989 """ |
|
990 Public method to check, if the project is controlled by a VCS. |
|
991 |
|
992 @return flag indicating a VCS controlled project |
|
993 @rtype bool |
|
994 """ |
|
995 return self.vcs is not None |
987 |
996 |
988 def handlePreferencesChanged(self): |
997 def handlePreferencesChanged(self): |
989 """ |
998 """ |
990 Public slot used to handle the preferencesChanged signal. |
999 Public slot used to handle the preferencesChanged signal. |
991 """ |
1000 """ |