Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/base/inc/TPRegexp.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
// //
// C++ Wrapper for the "Perl Compatible Regular Expressions" library //
// The PCRE lib can be found at: //
// http://www.pcre.org/ //
// https://www.pcre.org/ //
// //
// Extensive documentation about Regular expressions in Perl can be //
// found at : //
// http://perldoc.perl.org/perlre.html //
// https://perldoc.perl.org/perlre.html //
// //
//////////////////////////////////////////////////////////////////////////

Expand Down
2 changes: 1 addition & 1 deletion core/base/inc/TQClass.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// //
// This is part of the ROOT implementation of the Qt object //
// communication mechanism (see also //
// http://www.troll.no/qt/metaobjects.html) //
// https://www.troll.no/qt/metaobjects.html) //
// //
// See TQObject for details. //
// //
Expand Down
2 changes: 1 addition & 1 deletion core/base/inc/TSystemDirectory.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// Describes an Operating System directory for the browser. //
// //
// Author: Christian Bormann 30/09/97 //
// http://www.ikf.physik.uni-frankfurt.de/~bormann/ //
// https://www.ikf.physik.uni-frankfurt.de/~bormann/ //
// //
//////////////////////////////////////////////////////////////////////////

Expand Down
2 changes: 1 addition & 1 deletion core/base/inc/TUri.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// TUri //
// //
// This class represents a RFC3986 compatible URI. //
// See http://rfc.net/rfc3986.html. //
// See https://rfc.net/rfc3986.html. //
// It provides member functions to return the different parts of //
// an URI. //
// //
Expand Down
6 changes: 3 additions & 3 deletions core/base/src/TPRegexp.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
\ingroup Base

C++ Wrapper for the "Perl Compatible Regular Expressions" library
The PCRE lib can be found at: http://www.pcre.org/
The PCRE lib can be found at: https://www.pcre.org/

Extensive documentation about Regular expressions in Perl can be
found at : http://perldoc.perl.org/perlre.html
found at : https://perldoc.perl.org/perlre.html
*/

#include <iostream>
Expand Down Expand Up @@ -157,7 +157,7 @@ TPRegexp &TPRegexp::operator=(const TPRegexp &p)
/// Unlike i, m, s and x, these two flags affect the way the regex is used
/// rather than the regex itself. See Using regular expressions in Perl in
/// perlretut for further explanation of the g and c modifiers.
/// For more detail see: http://perldoc.perl.org/perlre.html#Modifiers.
/// For more detail see: https://perldoc.perl.org/perlre.html#Modifiers.

UInt_t TPRegexp::ParseMods(const TString &modStr) const
{
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/TQObject.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
\ingroup Base

This is the ROOT implementation of the Qt object communication
mechanism (see also http://www.troll.no/qt/metaobjects.html)
mechanism (see also https://www.troll.no/qt/metaobjects.html)

Signals and slots are used for communication between objects.
When an object has changed in some way that might be interesting
Expand Down