~ubuntu-branches/ubuntu/karmic/codelite/karmic

« back to all changes in this revision

Viewing changes to Subversion/subversion.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-08-15 17:42:43 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090815174243-nlb9ikgigbiybz12
Tags: 1.0.2893+dfsg-0ubuntu1
* debian/rules:
  + Tidy up get-orig-source rule
* debian/control:
  + Bump Standards-Version
  + Change Maintainer email address to @ubuntu.com
  + Drop cdbs build-dependency
* debian/copyright:
  + Update to DEP-5 format
* debian/patches/00_add-fPIC.patch:
  + Dropped, fix upstream
* Closes LP: #413992

Show diffs side-by-side

added added

removed removed

Lines of Context:
307
307
SubversionPlugin::~SubversionPlugin()
308
308
{
309
309
        SvnCommitMsgsMgr::Release();
310
 
        UnPlug();
311
310
}
312
311
 
313
312
void SubversionPlugin::OnSvnAbort(wxCommandEvent &event)
1265
1264
        DoRefreshIcons();
1266
1265
}
1267
1266
 
1268
 
void SubversionPlugin::DoSetSshEnv()
 
1267
void SubversionPlugin::DoSetSshEnv()
1269
1268
{
1270
1269
        wxString ssh_client = m_options.GetSshClient();
1271
1270
        wxString ssh_client_args = m_options.GetSshClientArguments();
1281
1280
                wxString env_value(ssh_client + wxT(" ") + ssh_client_args);
1282
1281
                wxSetEnv(wxT("SVN_SSH"), env_value.c_str());
1283
1282
                wxLogMessage(wxString::Format(wxT("Environment variable SVN_SSH is set to %s"), env_value.c_str()));
1284
 
        }
1285
 
}
 
1283
        }
 
1284
}