Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vala
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
668
Issues
668
List
Boards
Labels
Milestones
Merge Requests
23
Merge Requests
23
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
GNOME
vala
Commits
7d65305b
Commit
7d65305b
authored
Apr 14, 2013
by
Anatol Pomozov
Committed by
Jürg Billeter
Apr 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling errors using 'codespell' tool
parent
f5a54052
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
12 deletions
+12
-12
codegen/valaccodememberaccessmodule.vala
codegen/valaccodememberaccessmodule.vala
+1
-1
codegen/valaccodemethodmodule.vala
codegen/valaccodemethodmodule.vala
+2
-2
doc/vala-gen-introspect.1
doc/vala-gen-introspect.1
+1
-1
gee/collection.vala
gee/collection.vala
+1
-1
gee/list.vala
gee/list.vala
+2
-2
gobject-introspection/scanner.c
gobject-introspection/scanner.c
+1
-1
vala/valacodecontext.vala
vala/valacodecontext.vala
+1
-1
vala/valaelementaccess.vala
vala/valaelementaccess.vala
+1
-1
vala/valagenieparser.vala
vala/valagenieparser.vala
+1
-1
vapi/metadata/Pango-1.0.metadata
vapi/metadata/Pango-1.0.metadata
+1
-1
No files found.
codegen/valaccodememberaccessmodule.vala
View file @
7d65305b
...
...
@@ -455,7 +455,7 @@ public abstract class Vala.CCodeMemberAccessModule : CCodeControlFlowModule {
(
param
.
direction
==
ParameterDirection
.
IN
&&
type_as_struct
!=
null
&&
!
type_as_struct
.
is_simple_type
()
&&
!
result
.
value_type
.
nullable
))
{
result
.
cvalue
=
new
CCodeUnaryExpression
(
CCodeUnaryOperator
.
POINTER_INDIRECTION
,
new
CCodeIdentifier
(
get_variable_cname
(
name
)));
}
else
{
// Property setters of non simple structs shall replace all occurences
// Property setters of non simple structs shall replace all occur
r
ences
// of the "value" formal parameter with a dereferencing version of that
// parameter.
if
(
current_property_accessor
!=
null
&&
...
...
codegen/valaccodemethodmodule.vala
View file @
7d65305b
...
...
@@ -988,12 +988,12 @@ public abstract class Vala.CCodeMethodModule : CCodeStructModule {
foreach
(
Parameter
param
in
m
.
get_parameters
())
{
if
(
param
.
direction
!=
ParameterDirection
.
OUT
)
{
if
((
direction
&
1
)
==
0
)
{
// no in paramters
// no in param
e
ters
continue
;
}
}
else
{
if
((
direction
&
2
)
==
0
)
{
// no out paramters
// no out param
e
ters
continue
;
}
}
...
...
doc/vala-gen-introspect.1
View file @
7d65305b
...
...
@@ -20,7 +20,7 @@ After compilation, the following command generates a GI for pango:
.SH OPTIONS
.TP
This command currenly takes no command line options.
This command curren
t
ly takes no command line options.
.SH SEE ALSO
.BR vapigen (1)
...
...
gee/collection.vala
View file @
7d65305b
...
...
@@ -50,7 +50,7 @@ public abstract class Vala.Collection<G> : Iterable<G> {
public
abstract
bool
add
(
G
item
);
/**
* Removes the first occurence of an item from this collection. Must not
* Removes the first occur
r
ence of an item from this collection. Must not
* be called on read-only collections.
*
* @param item the item to remove from the collection
...
...
gee/list.vala
View file @
7d65305b
...
...
@@ -41,10 +41,10 @@ public abstract class Vala.List<G> : Collection<G> {
public
abstract
void
set
(
int
index
,
G
item
);
/**
* Returns the index of the first occurence of the specified item in
* Returns the index of the first occur
r
ence of the specified item in
* this list.
*
* @return the index of the first occurence of the specified item, or
* @return the index of the first occur
r
ence of the specified item, or
* -1 if the item could not be found
*/
public
abstract
int
index_of
(
G
item
);
...
...
gobject-introspection/scanner.c
View file @
7d65305b
...
...
@@ -1501,7 +1501,7 @@ g_igenerator_add_include_idl (GIGenerator *igenerator,
modules
=
g_idl_parse_file
(
filename
,
&
error
);
if
(
error
)
{
g_printerr
(
"An error occured while parsing %s: %s
\n
"
,
g_printerr
(
"An error occur
r
ed while parsing %s: %s
\n
"
,
filename
,
error
->
message
);
return
;
}
...
...
vala/valacodecontext.vala
View file @
7d65305b
...
...
@@ -329,7 +329,7 @@ public class Vala.CodeContext {
*/
public
bool
add_external_package
(
string
pkg
)
{
if
(
has_package
(
pkg
))
{
// ignore multiple occurences of the same package
// ignore multiple occur
r
ences of the same package
return
true
;
}
...
...
vala/valaelementaccess.vala
View file @
7d65305b
...
...
@@ -29,7 +29,7 @@ using GLib;
*/
public
class
Vala
.
ElementAccess
:
Expression
{
/**
* Expression representing the container on wich we want to access.
* Expression representing the container on w
h
ich we want to access.
*/
public
Expression
container
{
get
{
...
...
vala/valagenieparser.vala
View file @
7d65305b
...
...
@@ -2648,7 +2648,7 @@ public class Vala.Genie.Parser : CodeVisitor {
if
(
ModifierFlags
.
PRIVATE
in
flags
)
{
cl
.
access
=
SymbolAccessibility
.
PRIVATE
;
}
else
{
/* class must always be Public unless its name starts w
ti
h underscore */
/* class must always be Public unless its name starts w
it
h underscore */
if
(
sym
.
name
[
0
]
==
'_'
)
{
cl
.
access
=
SymbolAccessibility
.
PRIVATE
;
}
else
{
...
...
vapi/metadata/Pango-1.0.metadata
View file @
7d65305b
...
...
@@ -65,7 +65,7 @@ read_line
scan_string
.out out=false
// Backwards compat
a
bility
// Backwards compat
i
bility
AttrClass
.copy type="GLib.Callback" skip=false
.destroy type="GLib.Callback" skip=false
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment