Skip to content

Commit

Permalink
Update old Google Code URLs to new GitLab location.
Browse files Browse the repository at this point in the history
  • Loading branch information
slokhorst committed Jul 5, 2015
1 parent 574b6bc commit 043a0f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pkg_check_modules( SN libstartup-notification-1.0>=0.12 )
find_library( RT_LIBRARY rt )

if( NOT X11_FOUND OR NOT PANGOCAIRO_FOUND OR NOT PANGO_FOUND OR NOT CAIRO_FOUND OR NOT GLIB2_FOUND OR NOT GOBJECT2_FOUND OR NOT IMLIB2_FOUND )
message( FATAL_ERROR "Not all dependencies fulfilled. See https://code.google.com/p/tint2/wiki/Install" )
message( FATAL_ERROR "Not all dependencies fulfilled. See https://gitlab.com/o9000/tint2/wikis/Install" )
endif( NOT X11_FOUND OR NOT PANGOCAIRO_FOUND OR NOT PANGO_FOUND OR NOT CAIRO_FOUND OR NOT GLIB2_FOUND OR NOT GOBJECT2_FOUND OR NOT IMLIB2_FOUND )

string( REPLACE ";" " " FLAGS_REPLACED "${IMLIB2_LDFLAGS}" )
Expand Down
4 changes: 2 additions & 2 deletions doc/tint2.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH TINT2 1 "2009-01-17"
.TH TINT2 1 "2015-07-05"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
Expand Down Expand Up @@ -37,7 +37,7 @@ compliance with freedesktop specifications.
.PP
On the first startup tint2 creates a config file in $HOME/.config/tint2/tint2rc.
.PP
See wiki page on http://code.google.com/p/tint2/wiki/Welcome for more information.
See the wiki page at https://gitlab.com/o9000/tint2/wikis/home for more information.
.SH OPTIONS
.TP
.B \-c config-file
Expand Down
2 changes: 1 addition & 1 deletion src/panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ void set_panel_properties(Panel *p)
memset(&wmhints, 0, sizeof(wmhints));
if (panel_dock) {
// Necessary for placing the panel into the dock on Openbox and Fluxbox.
// See https://code.google.com/p/tint2/issues/detail?id=465
// See https://gitlab.com/o9000/tint2/issues/465
wmhints.icon_window = wmhints.window_group = p->main_win;
wmhints.flags = StateHint | IconWindowHint;
wmhints.initial_state = WithdrawnState;
Expand Down
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ void get_monitors()
if (res && res->ncrtc >= nbmonitor) {
// use xrandr to identify monitors (does not work with proprietery nvidia drivers)

// Workaround for issue https://code.google.com/p/tint2/issues/detail?id=353
// Workaround for issue https://gitlab.com/o9000/tint2/issues/353
// on some recent configs, XRRGetScreenResourcesCurrent returns a fantom monitor at last position
{
int i = res->ncrtc - 1;
Expand Down

0 comments on commit 043a0f7

Please sign in to comment.